Lagrange [release]

Player: Wider Play/Pause button

3b67a879d5126209425f75065f0bc74d9f8bc53e
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));