fix incorrect kill-single-process ui path

This commit is contained in:
Ryan Fleury
2024-10-23 13:23:22 -07:00
parent 62659c5161
commit 13341a458a
+4
View File
@@ -2780,6 +2780,10 @@ rd_watch_view_build(RD_WatchViewState *ewv, RD_WatchViewFlags flags, String8 roo
rd_cmd(is_frozen ? RD_CmdKind_ThawEntity : RD_CmdKind_FreezeEntity,
.ctrl_entity = ctrl_entity->handle);
}
else if(ctrl->kind == RD_CmdKind_Kill)
{
rd_cmd(RD_CmdKind_Kill, .process = ctrl_entity->handle);
}
else
{
rd_cmd(ctrl->kind, .entity = rd_handle_from_entity(entity));