Skip to content

Commit

Permalink
HideTracker: Use custom window rect for overlap calculation (#2162)
Browse files Browse the repository at this point in the history
  • Loading branch information
leolost2605 authored Dec 12, 2024
1 parent 0442e96 commit 74f91ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ShellClients/HideTracker.vala
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public class Gala.HideTracker : Object {
continue;
}

if (!panel.window.get_frame_rect ().overlap (window.get_frame_rect ())) {
if (!panel.get_custom_window_rect ().overlap (window.get_frame_rect ())) {
continue;
}

Expand Down

0 comments on commit 74f91ae

Please sign in to comment.