diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-12-01 15:07:41 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-12-01 15:07:41 -0500 |
commit | 923caec263c700e753806020ee068bd3b08ad5db (patch) | |
tree | c06b3c93137c10caf18fd492de96d5d65bc13541 /src/transport-widget.c | |
parent | 140cd5542edca8d6717294cd245ea2c148c666c2 (diff) | |
parent | c157f744805b87d39eb49ee162645d9af25b05b5 (diff) | |
download | ayatana-indicator-sound-923caec263c700e753806020ee068bd3b08ad5db.tar.gz ayatana-indicator-sound-923caec263c700e753806020ee068bd3b08ad5db.tar.bz2 ayatana-indicator-sound-923caec263c700e753806020ee068bd3b08ad5db.zip |
releasing version 0.8.0.0-0ubuntu1
Diffstat (limited to 'src/transport-widget.c')
-rw-r--r-- | src/transport-widget.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport-widget.c b/src/transport-widget.c index c535e00..2d1a7f2 100644 --- a/src/transport-widget.c +++ b/src/transport-widget.c @@ -561,15 +561,15 @@ transport_widget_collision_detection ( gint x, { TransportAction event = TRANSPORT_ACTION_NO_ACTION; - if (x > 67 && x < 112 + if (x > 57 && x < 102 && y > 12 && y < 40){ event = TRANSPORT_ACTION_PREVIOUS; } - else if (x > 111 && x < 153 + else if (x > 101 && x < 143 && y > 5 && y < 47){ event = TRANSPORT_ACTION_PLAY_PAUSE; } - else if (x > 152 && x < 197 + else if (x > 142 && x < 187 && y > 12 && y < 40){ event = TRANSPORT_ACTION_NEXT; } |