mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 22:47:50 +00:00
sculpt: hide manager_keyboard in graph
This commit is contained in:
parent
9ef6ed52c4
commit
0bec935ccb
@ -195,7 +195,7 @@ void Graph::generate(Xml_generator &xml) const
|
||||
Start_name const pretty_name { Pretty(name) };
|
||||
|
||||
/* omit sculpt's helpers from the graph */
|
||||
bool const blacklisted = (name == "runtime_view"
|
||||
bool const hidden = (name == "runtime_view"
|
||||
|| name == "popup_view"
|
||||
|| name == "menu_view"
|
||||
|| name == "panel_view"
|
||||
@ -210,8 +210,9 @@ void Graph::generate(Xml_generator &xml) const
|
||||
|| name == "public_rw"
|
||||
|| name == "depot_rom"
|
||||
|| name == "dynamic_depot_rom"
|
||||
|| name == "depot_query");
|
||||
if (blacklisted)
|
||||
|| name == "depot_query"
|
||||
|| name == "manager_keyboard");
|
||||
if (hidden)
|
||||
return;
|
||||
|
||||
Runtime_state::Info const info = _runtime_state.info(name);
|
||||
|
Loading…
Reference in New Issue
Block a user