mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 20:52:44 +01:00
Update change log
This commit is contained in:
parent
24bf14a752
commit
3de54efcaf
@ -8,9 +8,10 @@
|
||||
* Update Czech translation - thx Trottel
|
||||
* Update Hungarian translation - thx ZityiSoft Team
|
||||
* Update Turkish translation - thx Falcon006
|
||||
* Update Finnish translation - thx Teijo S
|
||||
* Ctrl+a/ctrl+d/ctrl+shift+i works in more lists - thx tormento
|
||||
* FIXED:
|
||||
*
|
||||
* Fix "Remove text for HI" issue - thx btsix
|
||||
|
||||
|
||||
3.5.6 (27th February 2018)
|
||||
|
@ -409,7 +409,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
|
||||
index = syncStartPos + syncTag.Length;
|
||||
|
||||
syncStartPosEnc = allInputLower.IndexOf(syncTagEnc, syncEndPos, StringComparison.Ordinal);
|
||||
if ((syncStartPosEnc >= 0 && syncStartPosEnc < syncStartPos) || syncStartPos == -1)
|
||||
if (syncStartPosEnc >= 0 && syncStartPosEnc < syncStartPos || syncStartPos == -1)
|
||||
{
|
||||
syncStartPos = syncStartPosEnc;
|
||||
index = syncStartPosEnc + syncTagEnc.Length;
|
||||
|
2
src/Forms/ImportSceneChanges.Designer.cs
generated
2
src/Forms/ImportSceneChanges.Designer.cs
generated
@ -215,7 +215,9 @@
|
||||
this.Name = "ImportSceneChanges";
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "ImportSceneChanges";
|
||||
this.Shown += new System.EventHandler(this.ImportSceneChanges_Shown);
|
||||
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ImportSceneChanges_KeyDown);
|
||||
this.groupBoxImportOptions.ResumeLayout(false);
|
||||
this.groupBoxTimeCodes.ResumeLayout(false);
|
||||
|
@ -264,5 +264,9 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
}
|
||||
}
|
||||
|
||||
private void ImportSceneChanges_Shown(object sender, EventArgs e)
|
||||
{
|
||||
Activate();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user