This commit is contained in:
Kathy Ruffing 2012-09-12 13:10:54 +00:00
parent fe8b388b1b
commit b27d274a43

View File

@ -632,7 +632,16 @@ namespace Volian.Controls.Library
}
public override void SaveContents()
{
MyStepRTB.Visible = false;
while (MyStepRTB.Text.Contains("\\"))
{
int loc = MyStepRTB.Text.IndexOf("\\");
MyStepRTB.SelectionStart = loc;
MyStepRTB.SelectionLength = 1;
MyStepRTB.SelectedText = "<BackSlash>";
}
SaveText();
MyStepRTB.Visible = true;
SaveConfig(); // This may be redundant
}
public void SaveText()