Merge pull request #1425 from ivandrofly/patch-12

Fix minor bug - thanks to @xylograph
This commit is contained in:
Nikolaj Olsson 2015-12-02 15:32:25 +01:00
commit 699a71b76b

View File

@ -30,7 +30,7 @@ namespace Nikse.SubtitleEdit.Core.Forms.FixCommonErrors
if (!isInsideFontTag)
{
newText = newText.Remove(idx, 1);
newText = newText.Insert(idx, musicSymbol);
newText = newText.Insert(idx, Configuration.Settings.Tools.MusicSymbol);
}
idx = newText.IndexOf('#', idx + 1);