From f6a1956a303fbb02d7bd84dee0709e2ae37c27ce Mon Sep 17 00:00:00 2001 From: Benjamin Lamowski Date: Thu, 14 Nov 2024 16:26:16 +0100 Subject: [PATCH] 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 --- repos/gems/src/app/sculpt_manager/dialog/distant_runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/gems/src/app/sculpt_manager/dialog/distant_runtime.h b/repos/gems/src/app/sculpt_manager/dialog/distant_runtime.h index 6c1ab0ca16..f0063b9f2f 100644 --- a/repos/gems/src/app/sculpt_manager/dialog/distant_runtime.h +++ b/repos/gems/src/app/sculpt_manager/dialog/distant_runtime.h @@ -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; }