Fix position/size changed disconnects

Commit 3f7a989d38 changed the signals to match mutter api changes,
but did not update disconnects, so do that.
This commit is contained in:
Adel Gadllah 2014-02-15 13:05:46 +01:00
parent 3f7a989d38
commit 8f1b8909dc
2 changed files with 2 additions and 2 deletions

View File

@ -295,7 +295,7 @@ const WindowClone = new Lang.Class({
else
realWindow = child.source;
realWindow.disconnect(child._updateId);
realWindow.meta_window.disconnect(child._updateId);
realWindow.disconnect(child._destroyId);
}));
},

View File

@ -176,7 +176,7 @@ const WindowClone = new Lang.Class({
this.actor.get_children().forEach(function(child) {
let realWindow = child.source;
realWindow.disconnect(child._updateId);
realWindow.meta_window.disconnect(child._updateId);
realWindow.disconnect(child._destroyId);
});
},