mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 22:47:50 +00:00
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:
parent
59d951ed6a
commit
f6a1956a30
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user