Enter Key on High Level step will default to the current step type

Fix logic for continue message indent
This commit is contained in:
Rich
2014-11-13 20:09:41 +00:00
parent 7d3b8872c8
commit cf8d11623b
2 changed files with 8 additions and 2 deletions

View File

@@ -2290,8 +2290,9 @@ namespace Volian.Print.Library
else
{
SectionConfig sc = itemInfo.MyParent.MyConfig as SectionConfig;
offset = (sc != null && sc.SubSection_AutoIndent == "Y") ? MyParent.XOffset
: (MyParent != null && MyParent.MyTab != null)?MyParent.MyTab.XOffset:XOffset;
if (MyParent != null)
offset = (sc != null && sc.SubSection_AutoIndent == "Y") ? MyParent.XOffset
: (MyParent.MyTab != null)?MyParent.MyTab.XOffset:XOffset;
}
}
else