From 3b67a879d5126209425f75065f0bc74d9f8bc53e Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Sat, 10 Oct 2020 13:43:43 +0300 Subject: Player: Wider Play/Pause button --- src/ui/documentwidget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui/documentwidget.c') diff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c index 1f0bce52..493750b3 100644 --- a/src/ui/documentwidget.c +++ b/src/ui/documentwidget.c @@ -1614,7 +1614,7 @@ static void init_PlayerUI(iPlayerUI *d, const iPlayer *player, iRect bounds) { d->player = player; d->bounds = bounds; const int height = height_Rect(bounds); - d->playPauseRect = (iRect){ addX_I2(topLeft_Rect(bounds), gap_UI / 2), init1_I2(height) }; + d->playPauseRect = (iRect){ addX_I2(topLeft_Rect(bounds), gap_UI / 2), init_I2(3 * height / 2, height) }; d->rewindRect = (iRect){ topRight_Rect(d->playPauseRect), init1_I2(height) }; d->menuRect = (iRect){ addX_I2(topRight_Rect(bounds), -height - gap_UI / 2), init1_I2(height) }; d->scrubberRect = initCorners_Rect(topRight_Rect(d->rewindRect), bottomLeft_Rect(d->menuRect)); -- cgit v1.2.3