try to fix select all in source view issue

This commit is contained in:
Nikolaj Olsson 2020-12-29 17:40:32 +01:00
parent 92a36c906f
commit 10494a1eb6

View File

@ -3342,6 +3342,7 @@ namespace Nikse.SubtitleEdit.Forms
ResetShowEarlierOrLater();
FixRightToLeftDependingOnLanguage();
textBoxSource.SelectionLength = 0;
}
private void ShowHideTextBasedFeatures(SubtitleFormat format)
@ -19306,6 +19307,8 @@ namespace Nikse.SubtitleEdit.Forms
{
trackBarWaveformPosition.Maximum = (int)mediaPlayer.Duration;
}
textBoxSource.SelectionLength = 0;
}
private void VideoEnded(object sender, EventArgs e)
@ -21235,6 +21238,7 @@ namespace Nikse.SubtitleEdit.Forms
labelSingleLine.Left = labelTextLineLengths.Left + labelTextLineLengths.Width - 6;
RemoveNotExistingFilesFromRecentFilesUI();
ShowSubtitleTimer.Start();
textBoxSource.SelectionLength = 0;
}
private void InitializePlayRateDropDown()