Improving the intuition around library navigation
This commit is contained in:
parent
32c8c41359
commit
563a5a3b2d
8 changed files with 88 additions and 29 deletions
|
|
@ -102,6 +102,15 @@ namespace MatterHackers.MatterControl.CustomWidgets.LibrarySelector
|
|||
UiThread.RunOnIdle(libraryDataView.RebuildView);
|
||||
}
|
||||
|
||||
public override void OnMouseDown(MouseEventArgs mouseEvent)
|
||||
{
|
||||
if (mouseEvent.Clicks == 2)
|
||||
{
|
||||
UiThread.RunOnIdle(ChangeCollection);
|
||||
}
|
||||
base.OnMouseDown(mouseEvent);
|
||||
}
|
||||
|
||||
private void SetDisplayAttributes()
|
||||
{
|
||||
//this.VAnchor = Agg.UI.VAnchor.FitToChildren;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue