diff --git a/src/interface.cpp b/src/interface.cpp index 7113e6a2..e6617656 100644 --- a/src/interface.cpp +++ b/src/interface.cpp @@ -66,6 +66,8 @@ static const GtkActionEntry menu_entries[] = { "EndProcess", NULL, N_("_End Process"), "E", N_("Force process to finish normally"), G_CALLBACK (cb_end_process) }, + { "KillProcess_Del", NULL, N_("_Kill Process"), "Delete", + N_("Force process to finish immediately"), G_CALLBACK (cb_kill_process) }, { "KillProcess", NULL, N_("_Kill Process"), "K", N_("Force process to finish immediately"), G_CALLBACK (cb_kill_process) }, { "ChangePriority", NULL, N_("_Change Priority"), NULL, @@ -137,6 +139,7 @@ static const char ui_info[] = " " " " " " + " " " " " " " " @@ -175,6 +178,7 @@ static const char ui_info[] = " " " " " " + " " " " " " " " @@ -780,6 +784,7 @@ update_sensitivity(ProcData *data) const char * const selected_actions[] = { "StopProcess", "ContProcess", "EndProcess", + "KillProcess_Del" "KillProcess", "ChangePriority", "MemoryMaps",