menu_view: increase local font cache to 1 MiB

This allows the use of font sizes up to 50 px without constant cache
misses.
This commit is contained in:
Norman Feske 2022-06-22 15:06:03 +02:00 committed by Christian Helmuth
parent 202bb707ce
commit d27c504261

View File

@ -126,7 +126,7 @@ class Menu_view::Style_database
Style_database const &_style_database;
Cached_font::Limit _font_cache_limit { 256*1024 };
Cached_font::Limit _font_cache_limit { 1024*1024 };
Vfs_font _vfs_font;
Cached_font _cached_font;