From e8a0b1c5145e2624b0fa16344e3733f6d02820f5 Mon Sep 17 00:00:00 2001 From: nick_m Date: Sun, 24 May 2015 05:50:31 +1000 Subject: [PATCH] Swap default snap modifiers (non-OSX) to avoid potential upgrade pain. - Disable snap now defaults to alt - Snap absolute now defaults to alt-windows --- libs/gtkmm2ext/keyboard.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/gtkmm2ext/keyboard.cc b/libs/gtkmm2ext/keyboard.cc index 48bdaf0052..9091eb55f9 100644 --- a/libs/gtkmm2ext/keyboard.cc +++ b/libs/gtkmm2ext/keyboard.cc @@ -96,8 +96,8 @@ const char* Keyboard::level4_modifier_name() { return _("Meta"); } const char* Keyboard::copy_modifier_name() { return _("Control"); } const char* Keyboard::rangeselect_modifier_name() { return S_("Key|Shift"); } -guint Keyboard::snap_mod = Keyboard::SecondaryModifier|Keyboard::Level4Modifier; -guint Keyboard::snap_delta_mod = Keyboard::SecondaryModifier; +guint Keyboard::snap_mod = Keyboard::SecondaryModifier; +guint Keyboard::snap_delta_mod = Keyboard::SecondaryModifier|Keyboard::Level4Modifier; #endif