diff --git a/repos/gems/src/app/sculpt_manager/model/runtime_state.h b/repos/gems/src/app/sculpt_manager/model/runtime_state.h index 042a75cf9a..c49843d2b6 100644 --- a/repos/gems/src/app/sculpt_manager/model/runtime_state.h +++ b/repos/gems/src/app/sculpt_manager/model/runtime_state.h @@ -216,7 +216,7 @@ class Sculpt::Runtime_state : public Runtime_info result = true; }); _launched_children.for_each([&] (Launched_child const &child) { - if (!result && child.name == name) + if (!result && child.name == name && child.launched) result = true; }); return result;