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:
2014-05-23 12:40:40 +00:00
parent 0081eed6bc
commit 89c7496c57
3 changed files with 36 additions and 9 deletions

View File

@@ -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;