From 8edf3f89a6e5dd3c187d27b03a78eb0e58e83f7c Mon Sep 17 00:00:00 2001 From: Scott Moreau Date: Sun, 22 Feb 2026 11:43:21 -0700 Subject: [PATCH] panel: Automatically unhide panel when autohide option is set from true to false --- src/util/wf-autohide-window.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/util/wf-autohide-window.cpp b/src/util/wf-autohide-window.cpp index 81734ba2..541ae4ad 100644 --- a/src/util/wf-autohide-window.cpp +++ b/src/util/wf-autohide-window.cpp @@ -481,6 +481,11 @@ void WayfireAutohidingWindow::setup_autohide() void WayfireAutohidingWindow::update_autohide() { + if (!autohide_opt) + { + schedule_show(0); + } + if ((output->output && autohide_opt) == last_autohide_value) { return;