diff options
| author | Noah Zepner <noah@zepner.dev> | 2025-08-07 04:32:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-07 12:32:37 +1000 |
| commit | 5bcface15ad17cd352fb4c9b5b76ac6d6c7feb4d (patch) | |
| tree | 171ef021e58b03044f7657d148736c26c7df932b /modules/drawers | |
| parent | controlcenter/bt: better styling (diff) | |
| download | caelestia-shell-5bcface15ad17cd352fb4c9b5b76ac6d6c7feb4d.tar.gz caelestia-shell-5bcface15ad17cd352fb4c9b5b76ac6d6c7feb4d.tar.bz2 caelestia-shell-5bcface15ad17cd352fb4c9b5b76ac6d6c7feb4d.zip | |
dashboard: showOnHover config option (#361)
* dashboard: showOnHover config option
* dashboard: close on lose focus when !showOnHover
Also update readme
---------
Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
Diffstat (limited to 'modules/drawers')
| -rw-r--r-- | modules/drawers/Interactions.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/drawers/Interactions.qml b/modules/drawers/Interactions.qml index 7b18adf..1cd1736 100644 --- a/modules/drawers/Interactions.qml +++ b/modules/drawers/Interactions.qml @@ -120,7 +120,7 @@ MouseArea { } // Show dashboard on hover - const showDashboard = inTopPanel(panels.dashboard, x, y); + const showDashboard = Config.dashboard.showOnHover && inTopPanel(panels.dashboard, x, y); // Always update visibility based on hover if not in shortcut mode if (!dashboardShortcutActive) { |