mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
kwin/convergentwindows: fix signal names
This commit is contained in:
parent
d1e91b1573
commit
0a640e9331
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ function run(client) {
|
|||
|
||||
workspace.clientAdded.connect((client) => {
|
||||
if (client.normalWindow) {
|
||||
client.clientFinishUserMovedResized.connect((client) => {
|
||||
client.interactiveMoveResizeFinished.connect((client) => {
|
||||
run(client);
|
||||
});
|
||||
run(client);
|
||||
|
|
@ -22,7 +22,7 @@ workspace.clientAdded.connect((client) => {
|
|||
// Windows are moved from the external screen
|
||||
// to the internal screen if the external screen
|
||||
// is disconnected.
|
||||
workspace.numberScreensChanged.connect((count) => {
|
||||
workspace.screensChanged.connect(() => {
|
||||
const clients = workspace.clientList();
|
||||
|
||||
for (var i = 0; i < clients.length; i++) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue