Skip to content

Commit 78d4efb

Browse files
committed
Check for allows_move as well
1 parent 02d4b57 commit 78d4efb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/WindowStateSaver.vala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ public class Gala.WindowStateSaver : GLib.Object {
8282
ShellClientsManager.get_instance ().is_positioned_window (window) ||
8383
window.window_type != Meta.WindowType.NORMAL ||
8484
window.skip_taskbar ||
85-
!window.resizeable
85+
!window.resizeable ||
86+
!window.allows_move ()
8687
) {
8788
return;
8889
}

0 commit comments

Comments
 (0)