]> git.pld-linux.org Git - packages/fluxbox.git/commitdiff
- change direction of switching workspaces with mouse wheel as it is
authorhavner <havner@pld-linux.org>
Fri, 6 Aug 2004 17:29:22 +0000 (17:29 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
  in every "normal" window manager: wheel down -> next (not previous)
  workspace

Changed files:
    fluxbox-wheel_direction.patch -> 1.1

fluxbox-wheel_direction.patch [new file with mode: 0644]

diff --git a/fluxbox-wheel_direction.patch b/fluxbox-wheel_direction.patch
new file mode 100644 (file)
index 0000000..3afe2fc
--- /dev/null
@@ -0,0 +1,15 @@
+diff -ur fluxbox.orig/src/fluxbox.cc fluxbox/src/fluxbox.cc
+--- fluxbox.orig/src/fluxbox.cc        2004-07-16 03:47:46.000000000 +0200
++++ fluxbox/src/fluxbox.cc     2004-08-06 19:19:32.075664744 +0200
+@@ -1146,9 +1146,9 @@
+                 screen->getRootmenu().grabInputFocus();
+             }
+         } else if (screen->isDesktopWheeling() && be.button == 4) {
+-            screen->nextWorkspace(1);
+-        } else if (screen->isDesktopWheeling() && be.button == 5) {
+             screen->prevWorkspace(1);
++        } else if (screen->isDesktopWheeling() && be.button == 5) {
++            screen->nextWorkspace(1);
+         }
+         
+     } break;
This page took 0.083735 seconds and 4 git commands to generate.