Update change log

This commit is contained in:
Nikolaj Olsson 2018-03-01 15:07:38 +01:00
parent 24bf14a752
commit 3de54efcaf
4 changed files with 9 additions and 2 deletions

View File

@ -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)

View File

@ -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;

View File

@ -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);

View File

@ -264,5 +264,9 @@ namespace Nikse.SubtitleEdit.Forms
}
}
private void ImportSceneChanges_Shown(object sender, EventArgs e)
{
Activate();
}
}
}