Bump max font size to 10*configured from 5*configured

This commit is contained in:
Kovid Goyal 2025-12-28 08:46:55 +05:30
parent cc55c04034
commit 25d8d9fe69
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -1472,7 +1472,7 @@ class Boss:
pass # no-op
else:
new_size = amt
new_size = max(MINIMUM_FONT_SIZE, min(new_size, get_options().font_size * 5))
new_size = max(MINIMUM_FONT_SIZE, min(new_size, get_options().font_size * 10))
return new_size
if all_windows: