mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-20 01:36:22 +00:00
sculpt: increase text-edit quota
This is an intermediate solution for accommodating overly long text lines that can appear in report/runtime/usb/devices in the presence of long product strings. Issue #5174
This commit is contained in:
parent
aefbc47c56
commit
fe144a6c5f
@ -1340,7 +1340,7 @@ struct Sculpt::Main : Input_event_handler,
|
||||
Start_name const start_name("editor");
|
||||
_file_browser_state.text_area.construct(_child_states, start_name,
|
||||
Priority::LEITZENTRALE,
|
||||
Ram_quota{16*1024*1024}, Cap_quota{250});
|
||||
Ram_quota{32*1024*1024}, Cap_quota{350});
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -123,14 +123,7 @@ struct Sculpt::File_browser_state : Noncopyable
|
||||
return;
|
||||
|
||||
xml.node("start", [&] {
|
||||
xml.attribute("name", text_area->name());
|
||||
|
||||
text_area->gen_start_node_version(xml);
|
||||
|
||||
xml.attribute("priority", (int)Priority::LEITZENTRALE);
|
||||
xml.attribute("caps", 350);
|
||||
gen_named_node(xml, "resource", "RAM", [&] {
|
||||
xml.attribute("quantum", String<64>(22*1024*1024UL)); });
|
||||
text_area->gen_start_node_content(xml);
|
||||
|
||||
gen_named_node(xml, "binary", "text_area");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user