C2020-001: Allow changing of font sizes within table (added rtf method argument)
C2020-001: Allow changing of font sizes within table, keep font size rtf for tables C2020-001: Allow changing of font sizes within table, user interface C2020-001: Allow changing of font sizes within table, added icons
This commit is contained in:
@@ -142,7 +142,7 @@ namespace VEPROMS
|
||||
{
|
||||
StepRTB cur = _DicStepRtb[fld.name];
|
||||
string rtf = cur.Rtf;
|
||||
string newval = DisplayText.StaticStripRtfCommands(rtf);
|
||||
string newval = DisplayText.StaticStripRtfCommands(rtf, false); // C2020-001: added 'false'
|
||||
// compare to original and if different, save in proc config.
|
||||
string oldval = procConfig.GetValue("PSI", fld.name);
|
||||
if (oldval != newval)
|
||||
|
@@ -140,7 +140,7 @@ namespace VEPROMS
|
||||
{
|
||||
StepRTB cur = _DicStepRtb[fld.name];
|
||||
string rtf = cur.Rtf;
|
||||
string newval = DisplayText.StaticStripRtfCommands(rtf);
|
||||
string newval = DisplayText.StaticStripRtfCommands(rtf, false); // C2020-001: added 'false'
|
||||
// compare to original and if different, save in proc config.
|
||||
string oldval = DoFolder ? folderConfig.GetValue("SI", fld.name) : dvConfig.GetValue("SI", fld.name);
|
||||
if (oldval != newval)
|
||||
|
Reference in New Issue
Block a user