summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2013-11-15 17:52:44 +0100
committerCarlos Garnacho <carlosg@gnome.org>2013-11-20 16:57:02 +0100
commit689c74f3d43896c07bb18176ca073213fa91bc59 (patch)
tree1751e9ceafefe3b37a991509ef09cad51ffb25dd
parente70a448688d96e8d7e49ce21f3d58ed3e1a3991e (diff)
downloadgnome-settings-daemon-689c74f3d43896c07bb18176ca073213fa91bc59.tar.gz
wacom: Skip GSD_WACOM_SET_ALL_MONITORS on the switch monitor pad action
Having an intermediate setting where the tablet is mapped to all monitors comes up as a bit unintuitive, especially on 2 monitor setups, where one click is required to switch to the other monitor, but then 2 clicks are required to switch back. https://bugzilla.gnome.org/show_bug.cgi?id=710373
-rw-r--r--plugins/wacom/gsd-wacom-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/wacom/gsd-wacom-manager.c b/plugins/wacom/gsd-wacom-manager.c
index 1e3d2026..4813abf5 100644
--- a/plugins/wacom/gsd-wacom-manager.c
+++ b/plugins/wacom/gsd-wacom-manager.c
@@ -1348,7 +1348,7 @@ switch_monitor (GsdWacomDevice *device)
current_monitor++;
if (current_monitor >= n_monitors)
- current_monitor = GSD_WACOM_SET_ALL_MONITORS;
+ current_monitor = 0;
gsd_wacom_device_set_display (device, current_monitor);
}