Changed the logic to match the logic for bulleted steps
This commit is contained in:
parent
fd96809f2a
commit
344b7f9ab7
@ -972,7 +972,7 @@ namespace Volian.Print.Library
|
||||
while (mypar != null && !mypar.IsProcedure)
|
||||
{
|
||||
string pTab = mypar.MyTab.CleanText.Trim();
|
||||
if (char.IsLetterOrDigit(pTab[0]))
|
||||
if (pTab.Length > 0 && char.IsLetterOrDigit(pTab[0]))
|
||||
{
|
||||
pTab = pTab.TrimEnd(" .".ToCharArray()) + ".";
|
||||
prTab = pTab + prTab;
|
||||
|
Loading…
x
Reference in New Issue
Block a user