sculpt: adjust RAM for inspect window

With the current RAM setting, opening the inspect window fails on a
display with 4K resolution.
Adjust the inspect window's RAM quota to make it work.

Issue #5174
This commit is contained in:
Benjamin Lamowski 2024-04-25 15:05:46 +02:00 committed by Christian Helmuth
parent 88f050963e
commit 820a144f6d

View File

@ -28,7 +28,7 @@ static void for_each_inspected_storage_target(Storage_devices const &devices, au
static void gen_terminal_start(Xml_generator &xml)
{
gen_common_start_content(xml, "terminal",
Cap_quota{110}, Ram_quota{18*1024*1024},
Cap_quota{110}, Ram_quota{36*1024*1024},
Priority::NESTED_MAX);
gen_provides<Terminal::Session>(xml);