Skip to content

Commit

Permalink
#3147 fix index of resize_counter argument
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed May 31, 2021
1 parent 4eb9e4d commit 8086e4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xpra/client/mixins/window_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1053,8 +1053,8 @@ def _process_window_move_resize(self, packet):
aw = max(1, self.sx(w))
ah = max(1, self.sy(h))
resize_counter = -1
if len(packet)>4:
resize_counter = packet[4]
if len(packet)>6:
resize_counter = packet[6]
window = self._id_to_window.get(wid)
geomlog("_process_window_move_resize%s moving / resizing window %s (id=%s) to %s",
packet[1:], window, wid, (ax, ay, aw, ah))
Expand Down

0 comments on commit 8086e4e

Please sign in to comment.