summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Zesch <[email protected]>2012-05-31 15:53:39 -0400
committerSteve Zesch <[email protected]>2012-05-31 15:53:39 -0400
commitf5a174164b55ee8acb69f92b569f7197db663b28 (patch)
tree0d8a0050ab6130a3f5cd2498b5fef314020af0e4
parentf583b2be23ed009e1e72ebe0ee53c1990f733f9e (diff)
downloadmate-media-f5a174164b55ee8acb69f92b569f7197db663b28.tar.bz2
mate-media-f5a174164b55ee8acb69f92b569f7197db663b28.tar.xz
Fixed https://github.com/mate-desktop/mate-media/issues/3
-rw-r--r--mate-volume-control/src/gvc-channel-bar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-volume-control/src/gvc-channel-bar.c b/mate-volume-control/src/gvc-channel-bar.c
index d750871..a90938a 100644
--- a/mate-volume-control/src/gvc-channel-bar.c
+++ b/mate-volume-control/src/gvc-channel-bar.c
@@ -449,7 +449,7 @@ gvc_channel_bar_scroll (GvcChannelBar *bar, GdkScrollDirection direction)
/* Switch side scroll to vertical */
if (direction == GDK_SCROLL_RIGHT)
direction = GDK_SCROLL_UP;
- else if (GDK_SCROLL_LEFT)
+ else if (direction == GDK_SCROLL_LEFT)
direction = GDK_SCROLL_DOWN;
}