Skip to content
Snippets Groups Projects
Commit 73157a4c authored by nkour's avatar nkour
Browse files

present() may or may not deiconify. and in Windows Window Manager it does not, so force that

parent ee390174
No related branches found
No related tags found
No related merge requests found
......@@ -278,6 +278,10 @@ class Systray:
if not gtkgui_helpers.possibly_move_window_in_current_desktop(win):
win.hide() # else we hide it from VD that was visible in
else:
# in Windows (perhaps other Window Managers too) minimize state
# is remembered, so make sure it's not minimized (iconified)
# because user wants to see roster
win.deiconify()
win.present()
else:
self.handle_first_event()
......
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