Skip to content

Commit

Permalink
add debug to assert now that I have seen it fire.. (shouldn't happen)
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@8852 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Mar 28, 2015
1 parent 61d8380 commit 9d8d1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/x11/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ def _process_configure_window(self, proto, packet):
traylog("tray %s configured to: %s", window, (x, y, w, h))
self._tray.move_resize(window, x, y, w, h)
else:
assert not window.is_OR()
assert not window.is_OR(), "received a configure packet for OR window %s from %s" % (window, proto)
self.last_client_configure_event = time.time()
if len(packet)>=9:
self._set_window_state(proto, wid, window, packet[8])
Expand Down

0 comments on commit 9d8d1d0

Please sign in to comment.