Needed to add 1 to the page number when generating the Place Keeper page
This commit is contained in:
parent
713ddbb3df
commit
373634318b
@ -68,9 +68,9 @@ namespace Volian.Print.Library
|
||||
string doneStr = (sc.Step_Placekeeper.ToUpper() == "C")? "C":"";
|
||||
string NoteCautionTab = "NOTE: ";
|
||||
if (pghC.MyParagraph.MyItemInfo.IsCaution) NoteCautionTab = "CAUTION: ";
|
||||
AddCautionOrNote(NoteCautionTab, pghC.MyParagraph.MyItemInfo.DisplayText, doneStr, pghC.MyParagraph.MyItemInfo.PageNumber.ToString());
|
||||
AddCautionOrNote(NoteCautionTab, pghC.MyParagraph.MyItemInfo.DisplayText, doneStr, (pghC.MyParagraph.MyItemInfo.PageNumber+1).ToString());
|
||||
}
|
||||
AddHighLevelStep(pgh.MyParagraph.MyItemInfo.MyTab.CleanText, pgh.MyParagraph.MyItemInfo.DisplayText, pgh.MyParagraph.MyItemInfo.FormatStepType == 9 ? "C" : "", pgh.MyParagraph.MyItemInfo.PageNumber.ToString());
|
||||
AddHighLevelStep(pgh.MyParagraph.MyItemInfo.MyTab.CleanText, pgh.MyParagraph.MyItemInfo.DisplayText, pgh.MyParagraph.MyItemInfo.FormatStepType == 9 ? "C" : "", (pgh.MyParagraph.MyItemInfo.PageNumber + 1).ToString());
|
||||
if (pgh.MyChildren.Count > 0)
|
||||
{
|
||||
bool conAct = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user