mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-21 18:06:50 +00:00
sculpt: omit the sculpt helpers from the graph
The runtime view, launcher query, and depot query increase the complexity of the graph without providing a tangible value to the user. This patch omits those components from the runtime view to make the graph less confusing.
This commit is contained in:
parent
e9f40e9d68
commit
010caa6236
@ -168,6 +168,13 @@ struct Sculpt::Graph
|
|||||||
|
|
||||||
Start_name const name = start.attribute_value("name", Start_name());
|
Start_name const name = start.attribute_value("name", Start_name());
|
||||||
|
|
||||||
|
/* omit sculpt's helpers from the graph */
|
||||||
|
bool const blacklisted = (name == "runtime_view"
|
||||||
|
|| name == "launcher_query"
|
||||||
|
|| name == "depot_query");
|
||||||
|
if (blacklisted)
|
||||||
|
return;
|
||||||
|
|
||||||
Runtime_state::Info const info = _runtime_state.info(name);
|
Runtime_state::Info const info = _runtime_state.info(name);
|
||||||
|
|
||||||
gen_named_node(xml, "frame", name, [&] () {
|
gen_named_node(xml, "frame", name, [&] () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user