Skip to content

Commit

Permalink
when resuming, only send the window icon of those windows that have one
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@9029 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Apr 17, 2015
1 parent af391da commit 10673a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/xpra/server/window_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,8 @@ def resume(self, window):
self.statistics.reset()
self.suspended = False
self.refresh(window, {"quality" : 100})
self.send_window_icon(window)
if not window.is_OR() and not window.is_tray():
self.send_window_icon(window)

def refresh(self, window, options={}):
w, h = window.get_dimensions()
Expand Down

0 comments on commit 10673a3

Please sign in to comment.