Put in many more tool tips.

This commit is contained in:
Lars Brubaker 2015-08-12 13:16:39 -07:00
parent d62a5f7fce
commit 0ef5747ca9
13 changed files with 69 additions and 70 deletions

View file

@ -199,6 +199,7 @@ namespace MatterHackers.MatterControl.PrintLibrary
// the add button
{
addToLibraryButton = textImageButtonFactory.Generate(LocalizedString.Get("Add"), "icon_circle_plus.png");
addToLibraryButton.ToolTipText = "Add an .stl, .amf, .gcode or .zip file to the Library".Localize();
buttonPanel.AddChild(addToLibraryButton);
addToLibraryButton.Margin = new BorderDouble(0, 0, 3, 0);
addToLibraryButton.Click += (sender, e) => UiThread.RunOnIdle(importToLibraryloadFile_ClickOnIdle);