mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
application: don't let the 'Quit' menu action also close desktops
We don't want the quit item on the app menu to close the desktop, if we have that preference enabled in GSettings.
This commit is contained in:
parent
52897a3ea5
commit
a270a6a214
1 changed files with 17 additions and 2 deletions
|
@ -834,6 +834,19 @@ action_help (GSimpleAction *action,
|
|||
}
|
||||
}
|
||||
|
||||
static void
|
||||
action_kill (GSimpleAction *action,
|
||||
GVariant *parameter,
|
||||
gpointer user_data)
|
||||
{
|
||||
GtkApplication *application = user_data;
|
||||
GList *windows;
|
||||
|
||||
/* this will also destroy the desktop windows */
|
||||
windows = gtk_application_get_windows (application);
|
||||
g_list_foreach (windows, (GFunc) gtk_widget_destroy, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
action_quit (GSimpleAction *action,
|
||||
GVariant *parameter,
|
||||
|
@ -842,8 +855,9 @@ action_quit (GSimpleAction *action,
|
|||
GtkApplication *application = user_data;
|
||||
GList *windows;
|
||||
|
||||
/* nautilus_window_close() doesn't do anything for desktop windows */
|
||||
windows = gtk_application_get_windows (application);
|
||||
g_list_foreach (windows, (GFunc) gtk_widget_destroy, NULL);
|
||||
g_list_foreach (windows, (GFunc) nautilus_window_close, NULL);
|
||||
}
|
||||
|
||||
static GActionEntry app_entries[] = {
|
||||
|
@ -853,6 +867,7 @@ static GActionEntry app_entries[] = {
|
|||
{ "about", action_about, NULL, NULL, NULL },
|
||||
{ "help", action_help, NULL, NULL, NULL },
|
||||
{ "quit", action_quit, NULL, NULL, NULL },
|
||||
{ "kill", action_kill, NULL, NULL, NULL },
|
||||
};
|
||||
|
||||
static void
|
||||
|
@ -1048,7 +1063,7 @@ nautilus_application_local_command_line (GApplication *application,
|
|||
if (kill_shell) {
|
||||
DEBUG ("Killing application, as requested");
|
||||
g_action_group_activate_action (G_ACTION_GROUP (application),
|
||||
"quit", NULL);
|
||||
"kill", NULL);
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue