Skip to content

Commit 4727a01

Browse files
committed
fix kill/halt button & text
1 parent e376ad8 commit 4727a01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/raddbg/raddbg_core.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5988,7 +5988,7 @@ rd_window_frame(RD_Window *ws)
59885988
UI_Tooltip
59895989
RD_Font(RD_FontSlot_Main)
59905990
UI_FontSize(rd_font_size_from_slot(RD_FontSlot_Main))
5991-
ui_labelf("Halt all target processes");
5991+
ui_labelf("Halt all attached processes");
59925992
}
59935993
if(ui_clicked(sig))
59945994
{
@@ -6017,11 +6017,11 @@ rd_window_frame(RD_Window *ws)
60176017
UI_Tooltip
60186018
RD_Font(RD_FontSlot_Main)
60196019
UI_FontSize(rd_font_size_from_slot(RD_FontSlot_Main))
6020-
ui_labelf("Kill all target processes");
6020+
ui_labelf("Kill all attached processes");
60216021
}
60226022
if(ui_clicked(sig))
60236023
{
6024-
rd_cmd(RD_CmdKind_Kill);
6024+
rd_cmd(RD_CmdKind_KillAll);
60256025
}
60266026
}
60276027

0 commit comments

Comments
 (0)