Skip to content

Commit

Permalink
the above argument is an int, cythonizing causes errors with a bool
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Feb 8, 2024
1 parent 809ead7 commit bcf1ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/client/gtk3/client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ def _process_raise_window(self, packet: PacketType) -> None:

def _process_restack_window(self, packet: PacketType) -> None:
wid, detail, other_wid = packet[1:4]
above = bool(detail == 0)
above = int(detail == 0)
window = self._id_to_window.get(wid)
other_window = self._id_to_window.get(other_wid)
focuslog("restack window %s - %s %s %s",
Expand Down

0 comments on commit bcf1ba6

Please sign in to comment.