Skip to content

Commit c839164

Browse files
authored
ShellWindow: remove clip when needed (#2427)
1 parent f6e38fd commit c839164

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ShellClients/ShellWindow.vala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ public class Gala.ShellWindow : PositionedWindow, GestureTarget {
160160
window_actor.set_clip (0, 0, window_actor.width, monitor_geom.y + monitor_geom.height - y);
161161
} else if (y < monitor_geom.y) {
162162
window_actor.set_clip (0, monitor_geom.y - y, window_actor.width, window_actor.height);
163+
} else {
164+
window_actor.remove_clip ();
163165
}
164166
}
165167
}

0 commit comments

Comments
 (0)