B2023-103: Improve User Interface for Incoming Transitions
This commit is contained in:
@@ -1942,7 +1942,12 @@ namespace Volian.Controls.Library
|
||||
case "Incoming Transitions": // C2020-033: Support the menu item to bring up Search/Incoming Transitions panel
|
||||
VETreeNode tnx = SelectedNode as VETreeNode;
|
||||
ItemInfo iii = tnx.VEObject as ItemInfo;
|
||||
if (iii != null) OnSearchIncTransIn(this, new vlnTreeItemInfoEventArgs(iii));
|
||||
if (iii != null)
|
||||
{
|
||||
this.Cursor = Cursors.WaitCursor; // B2023-103 add spinner when searching for incoming transitions
|
||||
OnSearchIncTransIn(this, new vlnTreeItemInfoEventArgs(iii));
|
||||
this.Cursor = Cursors.Default;
|
||||
}
|
||||
break;
|
||||
case "Properties..."://Show the properties for the selected node
|
||||
SetLastValues((VETreeNode)SelectedNode);
|
||||
|
Reference in New Issue
Block a user