Add French word split list

This commit is contained in:
niksedk 2021-12-20 20:28:31 +01:00
parent 58b75cf09c
commit 7fa610fd39
3 changed files with 4733 additions and 1 deletions

View File

@ -18,7 +18,8 @@
* Handle merge/split better with "box" tag
* Improve zoom-in for waveform a little - thx vitacon
* Trying to make nOCR work better with corrupted files - thx k7Up
* Improve English OCR rule a little - thx tormento
* Improve English/Italian OCR rules a little - thx tormento
* Allow higher font size in list view / text box - thx OmrSi
* FIXED:
* Fix for generating empty waveform for online videos - thx OmrSi
* Fix for finding frame rate in some mp4 files - thx OmrSi
@ -29,6 +30,7 @@
* Fix frame Rate/Multiplier/dropMode in TimedText properties - thx OmrSi
* Fix unwanted lowercase for ASSA properties window when reopen - thx Thomas
* Fix crash when opening an mp4 video in rare cases - thx jupester
* Fix issue with bookmarks + not opened files - thx OmrSi
3.6.4 (3rd December 2021)

File diff suppressed because it is too large Load Diff

View File

@ -23202,6 +23202,8 @@ namespace Nikse.SubtitleEdit.Forms
groupBoxVideo.MouseClick += GroupBoxVideo_MouseClick;
textBoxListViewText.MouseDown += TextBoxListViewText_MouseDown;
ShowSubtitleTimer.Start();
textBoxSource.SelectionLength = 0;
_timerSlow.Interval = 150;
@ -23209,6 +23211,14 @@ namespace Nikse.SubtitleEdit.Forms
_timerSlow.Start();
}
private void TextBoxListViewText_MouseDown(object sender, MouseEventArgs e)
{
if (!textBoxListViewText.Enabled)
{
InsertLineToolStripMenuItemClick(null, null);
}
}
private bool _updateShowEarlier;
private object _updateShowEarlierLock = new object();