diff options
author | Steve Zesch <[email protected]> | 2012-05-31 15:53:39 -0400 |
---|---|---|
committer | Steve Zesch <[email protected]> | 2012-05-31 15:53:39 -0400 |
commit | f5a174164b55ee8acb69f92b569f7197db663b28 (patch) | |
tree | 0d8a0050ab6130a3f5cd2498b5fef314020af0e4 /mate-volume-control/src | |
parent | f583b2be23ed009e1e72ebe0ee53c1990f733f9e (diff) | |
download | mate-media-f5a174164b55ee8acb69f92b569f7197db663b28.tar.bz2 mate-media-f5a174164b55ee8acb69f92b569f7197db663b28.tar.xz |
Fixed https://github.com/mate-desktop/mate-media/issues/3
Diffstat (limited to 'mate-volume-control/src')
-rw-r--r-- | mate-volume-control/src/gvc-channel-bar.c | 2 |
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; } |