Little text changes.

This commit is contained in:
Lars Brubaker 2015-08-10 13:36:31 -07:00
parent 286e0e5086
commit d139a525db
3 changed files with 7 additions and 2 deletions

View file

@ -115,7 +115,7 @@ namespace MatterHackers.MatterControl
buttonRow.Padding = new BorderDouble(0, 3);
}
Button saveAsButton = textImageButtonFactory.Generate("Save As".Localize(), centerText: true);
Button saveAsButton = textImageButtonFactory.Generate("Save".Localize(), centerText: true);
saveAsButton.Visible = true;
saveAsButton.Cursor = Cursors.Hand;
buttonRow.AddChild(saveAsButton);

View file

@ -173,7 +173,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
enterEditButtonsContainer = new FlowLayoutWidget();
{
Button addButton = textImageButtonFactory.Generate("Insert".Localize(), "icon_insert_32x32.png");
addButton.ToolTipText = "Insert an .stl, .amf, .gcode or .zip file".Localize();
addButton.ToolTipText = "Insert an .stl, .amf or .zip file".Localize();
addButton.Margin = new BorderDouble(right: 0);
enterEditButtonsContainer.AddChild(addButton);
addButton.Click += (sender, e) =>
@ -936,11 +936,13 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
MergeAndSavePartsToCurrentMeshFile();
return true;
});
buttonList.Add("Save As", () =>
{
UiThread.RunOnIdle(OpenSaveAsWindow);
return true;
});
SplitButtonFactory splitButtonFactory = new SplitButtonFactory();
splitButtonFactory.FixedHeight = 40 * TextWidget.GlobalPointSizeScaleRatio;
saveButtons = splitButtonFactory.Generate(buttonList, Direction.Up, imageName: "icon_save_32x32.png");

View file

@ -3577,3 +3577,6 @@ Translated:Insert an .stl, .amf, .gcode or .zip file
English:Bring the Window back into this Tab
Translated:Bring the Window back into this Tab
English:Insert an .stl, .amf or .zip file
Translated:Insert an .stl, .amf or .zip file