From a99730e570e6affd4d3043664392ed1244df9978 Mon Sep 17 00:00:00 2001 From: Kathy Date: Thu, 29 Aug 2013 14:19:26 +0000 Subject: [PATCH] Convert '^' to delta correctly. (when assigning color to RO, it was not setting font for delta symbol, so it got set to a '?'. --- PROMS/Volian.Controls.Library/StepRTB.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PROMS/Volian.Controls.Library/StepRTB.cs b/PROMS/Volian.Controls.Library/StepRTB.cs index 9b8c244a..99dd6756 100644 --- a/PROMS/Volian.Controls.Library/StepRTB.cs +++ b/PROMS/Volian.Controls.Library/StepRTB.cs @@ -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+@" \v0 }"; this.SelectionLength = 0; this.SelectionStart = position;