Lagrange [release]

Player: Rewind button in the UI

5b58cc76bd08d0e061c5f14506d97ee8dc3b7174
diff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c
index 81d7e879..9d94f200 100644
--- a/src/ui/documentwidget.c
+++ b/src/ui/documentwidget.c
@@ -1721,6 +1721,13 @@ static iBool processAudioPlayerEvents_DocumentWidget_(iDocumentWidget *d, const
                 animatePlayingAudio_DocumentWidget_(d);
                 return iTrue;
             }
+            else if (contains_Rect(ui.rewindRect, mouse)) {
+                stop_Player(plr);
+                start_Player(plr);
+                setPaused_Player(plr, iTrue);
+                refresh_Widget(d);
+                return iTrue;
+            }
         }
     }
     return iFalse;