sculpt_manager: bump quota boost limit for runtime_view

When using the Files view with font size set to Large, the boosted
runtime_view limit of 64MiB is still not enough for 4k screens.

Double the RAM boost limit to 128MiB.

Issue #5356
This commit is contained in:
Benjamin Lamowski 2024-11-14 16:26:16 +01:00 committed by Christian Helmuth
parent 59d951ed6a
commit f6a1956a30

View File

@ -105,7 +105,7 @@ class Dialog::Distant_runtime : Noncopyable
return false;
if (child.has_sub_node("ram") && child.sub_node("ram").has_attribute("requested")) {
_ram.value = min(2*_ram.value, 64*1024*1024u);
_ram.value = min(2*_ram.value, 128*1024*1024u);
result = true;
}