Skip to content

Commit

Permalink
#980 we cannot send configure for OR non-tray windows
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@10670 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Sep 19, 2015
1 parent fa3c8da commit d3abc3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/xpra/client/ui_client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,8 @@ def do_process_screen_size_change(self):
if MONITOR_CHANGE_REINIT or REINIT_WINDOWS:
screenlog.info("screen size change: will reinit the windows")
for window in self._id_to_window.values():
window.send_configure()
if not window.is_OR() or window.is_tray():
window.send_configure()


def update_screen_size(self):
Expand Down

0 comments on commit d3abc3e

Please sign in to comment.