Correct cursor position after RO Insert
Correct dispose logic for transition destination ITEMs Correct cursor position after Transition Insert Correct logic to parse Transition Link Token Correct Save Config to dispose of ITEM Removed debug vlnStackTrace
This commit is contained in:
@@ -43,9 +43,9 @@ namespace Volian.Controls.Library
|
||||
case "TransitionRange":
|
||||
_MyParsedLinkType = (ParsedLinkType)Enum.Parse(_MyParsedLinkType.GetType(), m.Groups[2].Value);
|
||||
string[] subst = m.Groups[3].Value.Split(" ".ToCharArray());
|
||||
if (subst[0].IndexOf("CTID") > -1)
|
||||
if (subst[1].IndexOf("CTID") > -1)
|
||||
_MyTransitionInfo = null;
|
||||
else if (subst[0].IndexOf("NewID") > -1)
|
||||
else if (subst[1].IndexOf("NewID") > -1)
|
||||
_MyTransitionInfo = null;
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user