Display pagenum formatting checkbox for BGE
This commit is contained in:
parent
a61dabd52e
commit
0ef5a19cd5
@ -589,7 +589,16 @@ namespace Volian.Controls.Library
|
|||||||
(_CurItemFrom.ActiveFormat.PlantFormat.FormatData.TransData.TransTypeList[indx].Type == 1 ||
|
(_CurItemFrom.ActiveFormat.PlantFormat.FormatData.TransData.TransTypeList[indx].Type == 1 ||
|
||||||
_CurItemFrom.ActiveFormat.PlantFormat.FormatData.TransData.TransTypeList[indx].Type == 2 ||
|
_CurItemFrom.ActiveFormat.PlantFormat.FormatData.TransData.TransTypeList[indx].Type == 2 ||
|
||||||
_CurItemFrom.ActiveFormat.PlantFormat.FormatData.TransData.TransTypeList[indx].Type == 4);
|
_CurItemFrom.ActiveFormat.PlantFormat.FormatData.TransData.TransTypeList[indx].Type == 4);
|
||||||
|
if (_CurItemFrom.ActiveFormat.PlantFormat.FormatData.TransData.UseSpecificTransitionModifier)
|
||||||
|
{
|
||||||
|
if (listBoxTranFmt.SelectedIndex >=0 && listBoxTranFmt.SelectedIndex <= listBoxTranFmt.Items.Count)
|
||||||
|
{
|
||||||
|
// see if format for this particular transition does page number:
|
||||||
|
if (_CurItemFrom.ActiveFormat.PlantFormat.FormatData.TransData.TransTypeList[indx].TransFormat.Contains("{Page Num}"))
|
||||||
|
cbPageNum.Visible = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
if (cbPageNum.Visible)
|
if (cbPageNum.Visible)
|
||||||
{
|
{
|
||||||
cbPageNum.Checked = false;
|
cbPageNum.Checked = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user