diff --git a/Vocaluxe/Screens/CScreenSing.cs b/Vocaluxe/Screens/CScreenSing.cs index b5eb65edb..ebb047744 100644 --- a/Vocaluxe/Screens/CScreenSing.cs +++ b/Vocaluxe/Screens/CScreenSing.cs @@ -47,7 +47,7 @@ private struct STimeRect public CStatic Rect; public float StartBeat; public float EndBeat; - } + } private const string _TextSongName = "TextSongName"; private const string _TextTime = "TextTime"; @@ -205,7 +205,7 @@ public override bool HandleInput(SKeyEvent keyEvent) if (!keyEvent.KeyPressed) { switch (keyEvent.Key) - { + { case Keys.Escape: _TogglePause(); if (_Pause) @@ -244,6 +244,17 @@ public override bool HandleInput(SKeyEvent keyEvent) { if (keyEvent.ModCtrl) _NextSong(); + } + else + { + if(!keyEvent.ModCtrl) + { + float timeTofirstNote = _TimeToFirstNote; + _CurrentTime += 5; + CSound.SetPosition(_CurrentStream, _CurrentTime); + + + } } break; case Keys.W: