Convert '^' to delta correctly. (when assigning color to RO, it was not setting font for delta symbol, so it got set to a '?'.

This commit is contained in:
Kathy Ruffing 2013-08-29 14:19:26 +00:00
parent 0d7455804b
commit a99730e570

View File

@ -1081,6 +1081,7 @@ namespace Volian.Controls.Library
int position = SelectionStart;
SelectionLength = 0;
linkValue = linkValue.Replace("\\u8209?", "\\f1\\u8209?\\f0 ");
linkValue = linkValue.Replace("\\u916?", "\\f1\\u916?\\f0 ");
SelectedRtf = @"{\rtf1\ansi"+FontTable+@"{\colortbl ;\red255\green0\blue0;}\v"+FontSize+@" <START]\v0\cf1 " + linkValue + @"\cf0\v " + linkUrl + @"[END>\v0 }";
this.SelectionLength = 0;
this.SelectionStart = position;