Minor fix for go to and set video position

This commit is contained in:
OmrSi 2021-11-06 02:37:27 +02:00
parent 44e9165666
commit 5bc3b08dc3

View File

@ -15368,8 +15368,9 @@ namespace Nikse.SubtitleEdit.Forms
textBoxListViewText.SelectAll();
GotoSubtitleIndex(newIndex);
ShowSubtitle();
e.SuppressKeyPress = true;
}
e.SuppressKeyPress = true;
}
else if (_shortcuts.MainGoToNextSubtitleAndFocusVideo == e.KeyData)
{
@ -15383,8 +15384,9 @@ namespace Nikse.SubtitleEdit.Forms
textBoxListViewText.SelectAll();
GotoSubtitleIndex(newIndex);
ShowSubtitle();
e.SuppressKeyPress = true;
}
e.SuppressKeyPress = true;
}
else if (_shortcuts.MainGoToNextSubtitleAndPlay == e.KeyData && mediaPlayer != null)
{