summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorThomas Holder <thomas@thomas-holder.de>2019-08-14 06:58:48 +0000
committerThomas Holder <thomas@thomas-holder.de>2019-08-14 06:58:48 +0000
commite851a0c937bb889db7145dbece02b58eb108fbee (patch)
tree8ae3cb633776bd387b3e2e2c8e92d8eda73eb804 /src/widgets
parentUpdate macOS build pipeline (diff)
downloadinkscape-e851a0c937bb889db7145dbece02b58eb108fbee.tar.gz
inkscape-e851a0c937bb889db7145dbece02b58eb108fbee.zip
fix #383 macOS "ask to save" on CMD+Q
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/desktop-widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/desktop-widget.cpp b/src/widgets/desktop-widget.cpp
index 6035719d8..09797dd32 100644
--- a/src/widgets/desktop-widget.cpp
+++ b/src/widgets/desktop-widget.cpp
@@ -952,7 +952,7 @@ sp_desktop_widget_realize (GtkWidget *widget)
if (osxapp && menushell && window) {
menushell->set_parent(*window);
gtkosx_application_set_menu_bar(osxapp, menushell->gobj());
- gtkosx_application_set_use_quartz_accelerators(osxapp, false);
+ gtkosx_application_set_use_quartz_accelerators(osxapp, true);
gtkosx_application_set_help_menu(osxapp, _get_help_menu(menushell->gobj()));
gtkosx_application_set_window_menu(osxapp, nullptr);
}