Upped revision number to 1.8
C2020-033: 2021 UPGRADE Handling of incoming transitions on delete or review
This commit is contained in:
@@ -838,9 +838,10 @@ namespace Volian.Controls.Library
|
||||
|
||||
void _MyStepRTB_SelectionChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (_MyStepRTB == null) return;
|
||||
_TimeActivity.Open();
|
||||
//B2019-154 This will prevent duplicate processing of the ribbon menu and refresh of step items, speeding up the editing experience
|
||||
if (_MyStepRTB.MyItemInfo == lastItem && _MyStepRTB.SelectionStart == lastStart && _MyStepRTB.SelectionLength == lastLength && _MyStepRTB.SelectedText == lastText)
|
||||
if (_MyStepRTB != null && _MyStepRTB.MyItemInfo == lastItem && _MyStepRTB.SelectionStart == lastStart && _MyStepRTB.SelectionLength == lastLength && _MyStepRTB.SelectedText == lastText)
|
||||
return;
|
||||
lastItem = _MyStepRTB.MyItemInfo;
|
||||
lastStart = _MyStepRTB.SelectionStart;
|
||||
@@ -3333,7 +3334,11 @@ namespace Volian.Controls.Library
|
||||
StepPanelTabDisplayEventArgs args = new StepPanelTabDisplayEventArgs("LibDocs");
|
||||
MyEditItem.MyStepPanel.OnTabDisplay(sender, args);
|
||||
}
|
||||
|
||||
// C2020-033: Support the Review/Incoming Transition button to bring up Search/Incoming Transitions panel
|
||||
private void btnSearchIncTrans_Click(object sender, EventArgs e)
|
||||
{
|
||||
MyEditItem.MyStepPanel.MyStepTabPanel.MyDisplayTabControl.OnSearchIncTrans(this, new vlnTreeItemInfoEventArgs(MyStepRTB.MyItemInfo));
|
||||
}
|
||||
public void btnAnnots_Click(object sender, EventArgs e)
|
||||
{
|
||||
StepPanelTabDisplayEventArgs args = new StepPanelTabDisplayEventArgs("Annots");
|
||||
|
Reference in New Issue
Block a user