Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Fix autohide" #2137

Merged
merged 2 commits into from
Dec 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions src/ShellClients/HideTracker.vala
Original file line number Diff line number Diff line change
Expand Up @@ -213,13 +213,10 @@ public class Gala.HideTracker : Object {
}

private void toggle_display (bool should_hide) {
unowned var window_actor = (Meta.WindowActor) panel.window.get_compositor_private ();

// Window actor receives pointer events while hidden on X11: https://github.com/elementary/gala/issues/2083
#if HAS_MUTTER45
hovered = panel.window.has_pointer () && window_actor.visible;
hovered = panel.window.has_pointer ();
#else
hovered = window_has_pointer () && window_actor.visible;
hovered = window_has_pointer ();
#endif

if (should_hide && !hovered && !panel.window.has_focus ()) {
Expand Down
Loading