diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/about.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/about.c b/src/about.c index 2fe95aa7..9586d537 100644 --- a/src/about.c +++ b/src/about.c @@ -292,7 +292,6 @@ zenity_about_dialog_response (GtkWidget *widget, int response, gpointer data) switch (response) { case GTK_RESPONSE_CLOSE: zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); - gtk_main_quit (); break; default: @@ -300,6 +299,8 @@ zenity_about_dialog_response (GtkWidget *widget, int response, gpointer data) zen_data->exit_code = zenity_util_return_exit_code (ZENITY_ESC); break; } + + gtk_main_quit (); } static void |