Changed the code that was presenting a message that the step had been deleted when the step had not been deleted.
Allow a transition to be modified. The current code does not allow an existing transition to be modified unless you change the Step Number of the destintation. Add a hardspace bewteen multiple returns. This assures that blank lines will be printed.
This commit is contained in:
@@ -114,6 +114,10 @@ namespace Volian.Print.Library
|
||||
{
|
||||
int profileDepth = ProfileTimer.Push(">>>> VlnPrintObject.IParagraph");
|
||||
string myRtf = Rtf;
|
||||
// Add a printable character (hard space) between multiple newlines
|
||||
// this asssures that the blank line will be printed
|
||||
if (myRtf.Contains(@"\line \line "))
|
||||
myRtf= myRtf.Replace(@"\line \line ", @"\line \u160? \line ");
|
||||
_IParagraph = RtfToParagraph(myRtf, HasIndent);
|
||||
ProfileTimer.Pop(profileDepth);
|
||||
}
|
||||
|
Reference in New Issue
Block a user