Do not recalculate the multitasking view layout when a window not present in that layout is removed (#1072)

This commit is contained in:
José Expósito 2021-03-02 19:02:05 +01:00 committed by GitHub
parent 93213fbfa6
commit 702e31825d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,11 +108,10 @@ namespace Gala {
foreach (var child in get_children ()) {
if (((WindowClone) child).window == window) {
remove_child (child);
reflow ();
break;
}
}
reflow ();
}
void window_selected_cb (WindowClone tiled) {