aboutsummaryrefslogtreecommitdiff
path: root/src/transport-widget.c
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2011-12-01 14:33:32 -0500
committerKen VanDine <ken.vandine@canonical.com>2011-12-01 14:33:32 -0500
commitc157f744805b87d39eb49ee162645d9af25b05b5 (patch)
tree9a1adac71b0b94de8a72d20fd39c821efe6b87c3 /src/transport-widget.c
parent6c40e13a44770e9bda393e5b0b1ebefa6b8077d5 (diff)
parent048fe88d783124358184248e33100caf9d6af82d (diff)
downloadayatana-indicator-sound-c157f744805b87d39eb49ee162645d9af25b05b5.tar.gz
ayatana-indicator-sound-c157f744805b87d39eb49ee162645d9af25b05b5.tar.bz2
ayatana-indicator-sound-c157f744805b87d39eb49ee162645d9af25b05b5.zip
Import upstream version 0.8.0.0
Diffstat (limited to 'src/transport-widget.c')
-rw-r--r--src/transport-widget.c6
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;
}