Skip to content

Commit

Permalink
#3533 newer versions of Firefox use smaller max-size
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Apr 28, 2022
1 parent 9726883 commit 56b3f4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xpra/client/client_window_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,8 @@ def set_size_constraints(self, size_constraints, max_window_size):
geomlog("intpair(%s)=%s", a, v)
if v:
v1, v2 = v
if a=="maximum-size" and v1>=32000 and v2>=32000 and WIN32:
#causes problems, see #2714
if a=="maximum-size" and v1>=16384 and v2>=16384 and WIN32:
#causes problems, see #2714, #3533
continue
sv1 = client.sx(v1)
sv2 = client.sy(v2)
Expand Down

0 comments on commit 56b3f4c

Please sign in to comment.