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

@ -2128,10 +2128,15 @@ namespace Volian.Controls.Library
displayMenu = btnCMInsHLS.Enabled;
Cursor.Position = new Point(0, 0); // Enter Key hit, move mouse pointer out of way of context menu
_ContextMenuBar.SetContextMenuEx(_MyStepRTB, btnCMInsHLS);
string lookfor = "XXX";
if(_MyStepRTB.MyItemInfo.MyHLS != null)
lookfor = " " + (_MyStepRTB.MyItemInfo.MyHLS.MyContent.Type - 20000).ToString();
foreach (DevComponents.DotNetBar.ButtonItem bi in btnCMInsHLS.SubItems)
{
if (bi.Checked)
moveDown = cnt;
if(((string) bi.Tag).EndsWith(lookfor))
moveDown = cnt;
cnt++;
}
break;

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