summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2018-08-26 16:13:55 -0400
committerVictor Kareh <[email protected]>2018-08-28 09:39:37 -0400
commitffece2a205bf6a7f1530e9e845bd6279a69effc6 (patch)
tree846b86bcf5d8dad96c4ff24446dc8e7c7c1c0360
parent6203779411c96ed94f1e57a4514e42aa3eb024b7 (diff)
downloadmarco-ffece2a205bf6a7f1530e9e845bd6279a69effc6.tar.bz2
marco-ffece2a205bf6a7f1530e9e845bd6279a69effc6.tar.xz
Don't show the ws switcher if we only have one
Origin: Ubuntu Bug: https://bugzilla.gnome.org/show_bug.cgi Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/506944 Author: Didier Roche <[email protected]>
-rw-r--r--src/core/keybindings.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/keybindings.c b/src/core/keybindings.c
index 5eee03ee..4183f7e1 100644
--- a/src/core/keybindings.c
+++ b/src/core/keybindings.c
@@ -3419,6 +3419,10 @@ handle_workspace_switch_or_move (MetaDisplay *display,
g_assert (motion < 0);
+ /* Don't show the ws switcher if we get just one ws */
+ if (meta_screen_get_n_workspaces(screen) == 1)
+ return;
+
meta_topic (META_DEBUG_KEYBINDINGS,
"Starting tab between workspaces, showing popup\n");