Skip to content
Snippets Groups Projects
Commit 0ae36837 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

fix: StatusIcon: Logic error on activate

parent 6e1b928d
No related branches found
No related tags found
No related merge requests found
......@@ -193,7 +193,7 @@ def _on_toggle_window(self, _widget: Gtk.MenuItem) -> None:
def _on_activate(self, *args: Any) -> None:
if app.window.is_minimized():
app.window.unminimize()
if app.window.is_withdrawn():
elif app.window.is_withdrawn():
app.window.show()
else:
app.window.hide()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment