mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-08-02 01:34:46 +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) => {
|
workspace.clientAdded.connect((client) => {
|
||||||
if (client.normalWindow) {
|
if (client.normalWindow) {
|
||||||
client.clientFinishUserMovedResized.connect((client) => {
|
client.interactiveMoveResizeFinished.connect((client) => {
|
||||||
run(client);
|
run(client);
|
||||||
});
|
});
|
||||||
run(client);
|
run(client);
|
||||||
|
|
@ -22,7 +22,7 @@ workspace.clientAdded.connect((client) => {
|
||||||
// Windows are moved from the external screen
|
// Windows are moved from the external screen
|
||||||
// to the internal screen if the external screen
|
// to the internal screen if the external screen
|
||||||
// is disconnected.
|
// is disconnected.
|
||||||
workspace.numberScreensChanged.connect((count) => {
|
workspace.screensChanged.connect(() => {
|
||||||
const clients = workspace.clientList();
|
const clients = workspace.clientList();
|
||||||
|
|
||||||
for (var i = 0; i < clients.length; i++) {
|
for (var i = 0; i < clients.length; i++) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue