B2015-170 – don’t allow a transition to a non-sequential step
This commit is contained in:
parent
54765cea95
commit
c70c8a574f
@ -1199,6 +1199,13 @@ namespace Volian.Controls.Library
|
|||||||
"Cannot add recusive transition", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
|
"Cannot add recusive transition", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// B2015-170 - don't allow a transition to step that is not sequental
|
||||||
|
if ((toItem != null &&!toItem.IsNumbered) || (rangeItem != null && !rangeItem.IsNumbered))
|
||||||
|
{
|
||||||
|
MessageBox.Show("For transitions containing step references, the transition must be to a numbered or lettered step.",
|
||||||
|
"Cannot add transition to a non-seqential step", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
|
||||||
|
return;
|
||||||
|
}
|
||||||
bool doTranmod = cbPageNum.Visible && cbPageNum.Checked;
|
bool doTranmod = cbPageNum.Visible && cbPageNum.Checked;
|
||||||
trantxt = TransitionText.GetResolvedText(MyRTB.MyItemInfo, listBoxTranFmt.SelectedIndex, toItem, rangeItem ?? toItem, doTranmod);
|
trantxt = TransitionText.GetResolvedText(MyRTB.MyItemInfo, listBoxTranFmt.SelectedIndex, toItem, rangeItem ?? toItem, doTranmod);
|
||||||
int ss = MyRTB.SelectionStart;// Remember where the link is being added
|
int ss = MyRTB.SelectionStart;// Remember where the link is being added
|
||||||
|
Loading…
x
Reference in New Issue
Block a user