Fix minor bug - thanks to @xylograph

This commit is contained in:
ivandrofly 2015-12-02 14:30:40 +00:00
parent 62682395e6
commit f024a89764

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