We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52d1380 commit 5ee7d8dCopy full SHA for 5ee7d8d
modules/dashboard.py
@@ -81,6 +81,11 @@ def __init__(self, **kwargs):
81
):
82
GLib.idle_add(self._setup_switcher_icons)
83
84
+ # Close on right click if the event isn't handled
85
+ self.connect(
86
+ "button-release-event",
87
+ lambda widget, event: (event.button == 3 and self.notch.close_notch()),
88
+ )
89
self.show_all()
90
91
def _setup_switcher_icons(self):
0 commit comments