From dd97c9beac2778cddb97603315b21778323a25c7 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 26 Feb 2008 00:59:25 -0500 Subject: [PATCH] change the buttons in the kill prompt from "yes/no" which can be a little confusing to be more clear "cancel/force exit" so people won't do the wrong thing by accident so much --- openbox/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openbox/client.c b/openbox/client.c index fbe728d..26b8dc6 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -3413,8 +3413,8 @@ static void client_prompt_kill(ObClient *self) /* check if we're already prompting */ if (!self->kill_prompt) { ObPromptAnswer answers[] = { - { _("No"), OB_KILL_RESULT_NO }, - { _("Yes"), OB_KILL_RESULT_YES } + { _("Cancel"), OB_KILL_RESULT_NO }, + { _("Force Exit"), OB_KILL_RESULT_YES } }; gchar *m; -- 1.9.1