Tags: Patch, moreinfo
Version: 0.8.2-2

just updated the patch a bit to fit 0.8.2-2 where this problem still exists.

--- SwitcherDocklet.cs.orig     2009-06-26 07:50:20.000000000 +0200
+++ SwitcherDocklet.cs  2010-05-21 05:45:17.000000000 +0200
@@ -113,6 +113,12 @@
                        int newIndex;
                        if (direction == ScrollDirection.Up)
                                newIndex = (index - 1) % viewport_list.Count;
+         if (direction == ScrollDirection.Up) {
+            if (index == 0)
+               newIndex = viewport_list.Count-1;
+            else
+               newIndex = (index - 1) % viewport_list.Count;
+         }
                        else
                                newIndex = (index + 1) % viewport_list.Count;
                        viewport_list [newIndex].Present ();



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to