diff --git a/src/Forms/VisualSync.cs b/src/Forms/VisualSync.cs index 55effa84e..024dd3d4f 100644 --- a/src/Forms/VisualSync.cs +++ b/src/Forms/VisualSync.cs @@ -647,7 +647,14 @@ namespace Nikse.SubtitleEdit.Forms GoBackSeconds(-1.0, MediaPlayerEnd); e.SuppressKeyPress = true; } - + else if (e.Modifiers == Keys.None && e.KeyCode == Keys.Space) + { + if (_isStartSceneActive) + MediaPlayerStart.TooglePlayPause(); + else + MediaPlayerEnd.TooglePlayPause(); + e.SuppressKeyPress = true; + } } }