Fix for pasting ASSA in the waveform - thx MitchSirco :)

Fix #8781
This commit is contained in:
Nikolaj Olsson 2024-08-30 13:17:32 +02:00
parent b58fa44884
commit f639e9cacf
2 changed files with 10 additions and 2 deletions

View File

@ -38,7 +38,7 @@
* Fix combo boxes popup in "Measurement converter" - thx Dehrimon
* Detect change switching between UTF-8-no-bom/UTF-8-with-bom - thx Minherre
* Fix crash in Whisper UI (bug in Dutch translation) - thx hpcs444/tsg040
* Fix bad xml replace in "TTML 1.0" - thx Info
* Fix bad XML replace in "TTML 1.0" - thx Info
* Fix undo after "merge selected" for 3+ lines - thx Llorx
* Fix crash with resolution 0x0 in "Generate transparent subs" - thx hellobigbean*
* Fix edge case when parsing ms - thx PoneyClairDeLune
@ -46,6 +46,7 @@
* Fix undesired line-break in auto-translate - thx Dyo-Anima
* Fix for batch translate via Ollama - thx Anon1337Elite
* Fix spell check shortcut (was the same as save-as, now Alt+F7) - thx Javier
* Fix for pasting ASSA in the waveform - thx MitchSirco
4.0.7 (8th July 2024)

View File

@ -825,9 +825,16 @@ namespace Nikse.SubtitleEdit.Forms
{
var text = Clipboard.GetText();
var tmp = new Subtitle();
var format = new SubRip();
SubtitleFormat format = new SubRip();
var list = new List<string>(text.SplitToLines());
if (new AdvancedSubStationAlpha().IsMine(list, string.Empty))
{
format = new AdvancedSubStationAlpha();
}
format.LoadSubtitle(tmp, list, null);
if (videoPositionInMilliseconds >= 0 && tmp.Paragraphs.Count > 0)
{
if (tmp.Paragraphs[0].StartTime.TotalMilliseconds > videoPositionInMilliseconds)