Bump max font size to 10*configured from 5*configured
This commit is contained in:
parent
cc55c04034
commit
25d8d9fe69
1 changed files with 1 additions and 1 deletions
|
|
@ -1472,7 +1472,7 @@ def calc_new_size(old_size: float) -> float:
|
|||
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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue