B2018-002 Handle Range Transitions for Invalid Transitions
Add a prefix to transitions converted to text which were invalid B2018-002 Add counters for invalid transitions converted to text. Added a method to convert invalid transitions to text B2018-002 Cleanup debug B2018-002 Changed the panel so that it only requires a default section if the default is not set and it is required B2018-010 Logic fixed to display the Requires Default tooltip only when it is required. B2018-002 Fix invalid transitions when a step is activated. B2018-002 Don't fail when you open a step with an invalid transition. B2018-002 Display Transition Refresh Statistics
This commit is contained in:
@@ -445,7 +445,8 @@ namespace Volian.Controls.Library
|
||||
EditItem lastEI = _SelectedEditItem;
|
||||
if (value != null) value.SetActive(); // Set the active color
|
||||
if (lastEI == value) return; // Same - No Change
|
||||
|
||||
// B2018-002 - Invalid Transitions - If the current step contains an invalid transition convert it to text
|
||||
if(value != null) ItemInfo.ConvertInvalidTransitionsToText(value.MyItemInfo);
|
||||
if (lastEI != null && lastEI.BeingDisposed == false)
|
||||
{
|
||||
bool shouldDelete = !lastEI.BeingRemoved && lastEI.Empty && (lastEI.MyItemInfo.MyContent.ContentEntryCount <= 0);
|
||||
|
Reference in New Issue
Block a user