The <CTRL-LEFTARROW> key stroke now works like 16-bit VE-PROMS (it wasn’t jumping to the AER column with it should have)

This commit is contained in:
John Jenko 2012-03-19 14:22:17 +00:00
parent c78b6241e8
commit fe96bbf619

View File

@ -761,7 +761,7 @@ namespace Volian.Controls.Library
ii = MoveDown(ei, ii);
break;
case E_ArrowKeys.Left:
case E_ArrowKeys.CtrlLeft:
//case E_ArrowKeys.CtrlLeft:
if (!ei.MyItemInfo.IsProcedure)
{
EditItem tmpEI = null;
@ -778,6 +778,10 @@ namespace Volian.Controls.Library
}
}
break;
case E_ArrowKeys.CtrlLeft: // this logic is same as in 16-bit VE-PROMS
if (!ei.MyItemInfo.IsProcedure)
SelectedEditItem = _LookupEditItems[ei.MyItemInfo.MyParent.ItemID];
break;
default:
break;
}