B2013-154: enter-key from RNO in single column -> fix incorrect insertion/display of new RNO

This commit is contained in:
Kathy Ruffing 2016-08-01 15:30:36 +00:00
parent ffd8d0d530
commit e7302a504e

View File

@ -2751,6 +2751,12 @@ namespace Volian.Controls.Library
}
else if (MyItemInfo.IsRNOPart)
{
// B2013-154: if in single column mode, enter key from an RNO part should insert an RNO part:
if (MyItemInfo.ColumnMode == 0)
{
CreateNewRNO();
return;
}
MyStepRTB.StepRTB_ArrowPressed(E_ArrowKeys.CtrlLeft);
if (MyItemInfo.IsHigh)
{