summaryrefslogtreecommitdiffstats
path: root/src/widgets/desktop-widget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/desktop-widget.cpp')
-rw-r--r--src/widgets/desktop-widget.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/widgets/desktop-widget.cpp b/src/widgets/desktop-widget.cpp
index 09797dd32..8ccba0319 100644
--- a/src/widgets/desktop-widget.cpp
+++ b/src/widgets/desktop-widget.cpp
@@ -952,7 +952,9 @@ 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, true);
+ // using quartz accelerators gives menu shortcuts priority over everything else,
+ // messes up text input because Inkscape has single key shortcuts (e.g. 1-6).
+ gtkosx_application_set_use_quartz_accelerators(osxapp, false);
gtkosx_application_set_help_menu(osxapp, _get_help_menu(menushell->gobj()));
gtkosx_application_set_window_menu(osxapp, nullptr);
}