mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +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) };
|
Start_name const pretty_name { Pretty(name) };
|
||||||
|
|
||||||
/* omit sculpt's helpers from the graph */
|
/* omit sculpt's helpers from the graph */
|
||||||
bool const blacklisted = (name == "runtime_view"
|
bool const hidden = (name == "runtime_view"
|
||||||
|| name == "popup_view"
|
|| name == "popup_view"
|
||||||
|| name == "menu_view"
|
|| name == "menu_view"
|
||||||
|| name == "panel_view"
|
|| name == "panel_view"
|
||||||
@ -210,8 +210,9 @@ void Graph::generate(Xml_generator &xml) const
|
|||||||
|| name == "public_rw"
|
|| name == "public_rw"
|
||||||
|| name == "depot_rom"
|
|| name == "depot_rom"
|
||||||
|| name == "dynamic_depot_rom"
|
|| name == "dynamic_depot_rom"
|
||||||
|| name == "depot_query");
|
|| name == "depot_query"
|
||||||
if (blacklisted)
|
|| name == "manager_keyboard");
|
||||||
|
if (hidden)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Runtime_state::Info const info = _runtime_state.info(name);
|
Runtime_state::Info const info = _runtime_state.info(name);
|
||||||
|
Loading…
Reference in New Issue
Block a user