mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-27 03:11:46 +00:00
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 @@ 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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue