This commit is contained in:
parent
fe8b388b1b
commit
b27d274a43
@ -632,7 +632,16 @@ namespace Volian.Controls.Library
|
|||||||
}
|
}
|
||||||
public override void SaveContents()
|
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();
|
SaveText();
|
||||||
|
MyStepRTB.Visible = true;
|
||||||
SaveConfig(); // This may be redundant
|
SaveConfig(); // This may be redundant
|
||||||
}
|
}
|
||||||
public void SaveText()
|
public void SaveText()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user