mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 22:28:24 +02:00
Bump max font size to 10*configured from 5*configured
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user