diff --git a/hammond-gtk/src/widgets/player.rs b/hammond-gtk/src/widgets/player.rs index 103ef39..8c1d338 100644 --- a/hammond-gtk/src/widgets/player.rs +++ b/hammond-gtk/src/widgets/player.rs @@ -332,6 +332,7 @@ impl PlayerExt for PlayerWidget { self.controls.play.show(); self.player.pause(); + self.seek(ClockTime::from_seconds(5), SeekDirection::Backwards); } // Adapted from https://github.com/philn/glide/blob/b52a65d99daeab0b487f79a0e1ccfad0cd433e22/src/player_context.rs#L219-L245