Added double click open to printer tree view item

This commit is contained in:
Lars Brubaker 2018-10-10 10:01:24 -07:00
parent fe34a70d86
commit f32bc86e12
3 changed files with 46 additions and 13 deletions

View file

@ -80,6 +80,11 @@ namespace MatterHackers.MatterControl.CustomWidgets
this.NodeMouseClick?.Invoke(sourceWidget, e);
}
internal void NotifyItemDoubleClicked(GuiWidget sourceWidget, MouseEventArgs e)
{
this.NodeMouseDoubleClick?.Invoke(sourceWidget, e);
}
public event EventHandler BeforeCollapse;
public event EventHandler BeforeExpand;