Hide the Step Properties Transition tab when on a Figure substep (B2014-093)

Disable the Transition, Hard Space, Symbol, and Indent buttons on the Insert Ribbon when on a Figure substep (B2014-093)
This commit is contained in:
2016-04-12 17:43:09 +00:00
parent ce2f89f848
commit c72522730c
2 changed files with 10 additions and 2 deletions

View File

@@ -3073,7 +3073,7 @@ namespace VEPROMS
if (_LastStepRTB != null)
{
infotabRO.Visible = _LastStepRTB.MyItemInfo.MyDocVersion.DocVersionAssociationCount > 0;
infotabTransition.Visible = true;
infotabTransition.Visible = !_CurrentItem.IsFigure;
displayRO.Enabled = _LastStepRTB.EditMode || _LastStepRTB.IsRoTable;
displayTransition.Enabled = _LastStepRTB.EditMode;
}