BGE: Fix RNO tab when AER has ending parenthesis
BGE: Fix bug that left a ‘page number’ transition setting turned on for transition types that did not have this option. BGE: Support for section continue messages (fix crash when access of null pointer), improved tabs for top continue messages in RNO column & when cautions/notes; adjust width of note/caution
This commit is contained in:
@@ -599,9 +599,9 @@ namespace Volian.Controls.Library
|
||||
}
|
||||
|
||||
}
|
||||
cbPageNum.Checked = false;
|
||||
if (cbPageNum.Visible)
|
||||
{
|
||||
cbPageNum.Checked = false;
|
||||
if (CurTrans != null)
|
||||
{
|
||||
TransitionConfig tc = new TransitionConfig(CurTrans.Config);
|
||||
@@ -1052,7 +1052,7 @@ namespace Volian.Controls.Library
|
||||
MessageBox.Show(sb.ToString());
|
||||
return;
|
||||
}
|
||||
bool doTranmod = this.cbPageNum.Checked;
|
||||
bool doTranmod = cbPageNum.Visible && cbPageNum.Checked;
|
||||
trantxt = TransitionText.GetResolvedText(MyRTB.MyItemInfo, listBoxTranFmt.SelectedIndex, toItem, rangeItem ?? toItem, doTranmod);
|
||||
int ss = MyRTB.SelectionStart;// Remember where the link is being added
|
||||
int sl = MyRTB.SelectionLength;
|
||||
|
Reference in New Issue
Block a user