Skip to content

Commit

Permalink
#790: delay more to try to prevent the race iconify / deiconify race
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@8534 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jan 23, 2015
1 parent 3339bda commit 6f16048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/gtk_base/gtk_client_window_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def window_state_updated(self, widget, event):
def tell_server():
if self._iconified:
self.send("unmap-window", self._id, True)
self.timeout_add(50, tell_server)
self.timeout_add(150, tell_server)
else:
self.process_map_event()
self.after_window_state_updated()
Expand Down

0 comments on commit 6f16048

Please sign in to comment.