This commit is contained in:
Kathy Ruffing 2011-01-07 15:34:35 +00:00
parent d601a2c76a
commit eca725c461

View File

@ -80,7 +80,8 @@ namespace Volian.Controls.Library
}
public void FindSearchString()
{
SelectedStepItem.MyStepRTB.Find(SearchString);
// convert the '-' to the unicode non-breaking dash (\u8209? or \u2011 hex)
SelectedStepItem.MyStepRTB.Find(SearchString.Replace('-','\u2011'));
}
#endregion
#region Contructors