aboutsummaryrefslogtreecommitdiff
path: root/src/transport-widget.c
diff options
context:
space:
mode:
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;
}