From dee9f17b595ea903a982d31d1124b302bb17e2ff Mon Sep 17 00:00:00 2001 From: root Date: Wed, 17 Jul 2013 00:58:52 -0700 Subject: Wed Jul 17 00:58:51 PDT 2013 --- .../fix-shinyswitcher-scrolling.patch | 96 ---------------------- 1 file changed, 96 deletions(-) delete mode 100644 community/awn-extras-applets/fix-shinyswitcher-scrolling.patch (limited to 'community/awn-extras-applets/fix-shinyswitcher-scrolling.patch') diff --git a/community/awn-extras-applets/fix-shinyswitcher-scrolling.patch b/community/awn-extras-applets/fix-shinyswitcher-scrolling.patch deleted file mode 100644 index 69dcae9c1..000000000 --- a/community/awn-extras-applets/fix-shinyswitcher-scrolling.patch +++ /dev/null @@ -1,96 +0,0 @@ -=== modified file 'applets/maintained/shiny-switcher/shinyswitcherapplet.c' ---- applets/maintained/shiny-switcher/shinyswitcherapplet.c 2010-09-12 16:15:07 +0000 -+++ applets/maintained/shiny-switcher/shinyswitcherapplet.c 2010-11-02 13:52:43 +0000 -@@ -769,7 +769,7 @@ - - - static gboolean --_scroll_event(GtkWidget *widget, GdkEventMotion *event, AwnShinySwitcher *shinyswitcher) -+_scroll_event(GtkWidget *widget, GdkEventScroll *event, AwnShinySwitcher *shinyswitcher) - { - AwnShinySwitcherPrivate * priv = GET_PRIVATE (shinyswitcher); - WnckWorkspace *cur_space = wnck_screen_get_active_workspace(priv->wnck_screen); -@@ -779,7 +779,7 @@ - { - if (event->type == GDK_SCROLL) - { -- WnckMotionDirection direction1, direction2; -+ WnckMotionDirection left, right, up, down; - - switch (priv->mousewheel) - { -@@ -787,8 +787,10 @@ - case 1: - - case 3: -- direction1 = WNCK_MOTION_LEFT; -- direction2 = WNCK_MOTION_RIGHT; -+ left = WNCK_MOTION_LEFT; -+ right = WNCK_MOTION_RIGHT; -+ up = WNCK_MOTION_UP; -+ down = WNCK_MOTION_DOWN; - break; - - case 2: -@@ -796,22 +798,52 @@ - case 4: - - default: -- direction1 = WNCK_MOTION_RIGHT; -- direction2 = WNCK_MOTION_LEFT; -- -+ left = WNCK_MOTION_RIGHT; -+ right = WNCK_MOTION_LEFT; -+ up = WNCK_MOTION_DOWN; -+ down = WNCK_MOTION_UP; - } - -- if (event->state & GDK_SHIFT_MASK) -+ if ( (event->direction == GDK_SCROLL_UP) || -+ (event->direction == GDK_SCROLL_LEFT) ) - { -- new_space = wnck_workspace_get_neighbor(cur_space, WNCK_MOTION_RIGHT); -+ new_space = wnck_workspace_get_neighbor(cur_space, left); -+ if (new_space == NULL) -+ { -+ new_space = wnck_workspace_get_neighbor(cur_space, up); -+ if (new_space) -+ { -+ for (cur_space = new_space; cur_space; ) -+ { -+ cur_space = wnck_workspace_get_neighbor(cur_space, right); -+ if (cur_space) -+ { -+ new_space = cur_space; -+ } -+ } -+ } -+ } - } - else - { -- new_space = wnck_workspace_get_neighbor(cur_space, WNCK_MOTION_LEFT); -- -+ new_space = wnck_workspace_get_neighbor(cur_space, right); -+ if (!new_space) -+ { -+ new_space = wnck_workspace_get_neighbor(cur_space, down); -+ if (new_space) -+ { -+ for (cur_space = new_space; cur_space; ) -+ { -+ cur_space = wnck_workspace_get_neighbor(cur_space, left); -+ if (cur_space) -+ { -+ new_space = cur_space; -+ } -+ } -+ } -+ } - } - } -- - if (new_space) - { - wnck_workspace_activate(new_space, event->time); /* FIXME */ - -- cgit v1.2.3-54-g00ecf