From 5cfbc0b1eca56ef792bbdd07471097b810e70485 Mon Sep 17 00:00:00 2001 From: LarsBrubaker Date: Sun, 2 Aug 2020 07:40:55 -0700 Subject: [PATCH] fix menu placement --- MatterControlLib/Library/Widgets/PrintLibraryWidget.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/MatterControlLib/Library/Widgets/PrintLibraryWidget.cs b/MatterControlLib/Library/Widgets/PrintLibraryWidget.cs index ddc406153..d91c4230c 100644 --- a/MatterControlLib/Library/Widgets/PrintLibraryWidget.cs +++ b/MatterControlLib/Library/Widgets/PrintLibraryWidget.cs @@ -93,7 +93,8 @@ namespace MatterHackers.MatterControl.PrintLibrary { HAnchor = HAnchor.Stretch, VAnchor = VAnchor.Fit, - Name = "Folders Toolbar" + Name = "Folders Toolbar", + ToolTipText = "Sorting" }; theme.ApplyBottomBorder(toolbar, shadedBorder: true); @@ -147,13 +148,15 @@ namespace MatterHackers.MatterControl.PrintLibrary allControls.AddChild(toolbar); + toolbar.AddChild(new HorizontalSpacer()); + PopupMenuButton viewMenuButton; toolbar.AddChild( viewMenuButton = new PopupMenuButton( new ImageWidget(AggContext.StaticData.LoadIcon("mi-view-list_10.png", 32, 32, theme.InvertIcons)) { - //VAnchor = VAnchor.Center + ToolTipText = "View Settings" }, theme) {