diff --git a/ApplicationView/WidescreenPanel.cs b/ApplicationView/WidescreenPanel.cs index 55bb9e82a..dbb1b6330 100644 --- a/ApplicationView/WidescreenPanel.cs +++ b/ApplicationView/WidescreenPanel.cs @@ -63,7 +63,7 @@ namespace MatterHackers.MatterControl FlowLayoutWidget ColumnOne; FlowLayoutWidget ColumnTwo; - int ColumnTwoMinWidth = 1390; + int ColumnTwoMinWidth = 1590; FlowLayoutWidget ColumnThree; int ColumnThreeMinWidth = 990; diff --git a/PartPreviewWindow/GcodeViewBasic.cs b/PartPreviewWindow/GcodeViewBasic.cs index f6f6130a4..9b2a62f81 100644 --- a/PartPreviewWindow/GcodeViewBasic.cs +++ b/PartPreviewWindow/GcodeViewBasic.cs @@ -130,7 +130,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow gcodeDispalyWidget = new GuiWidget(HAnchor.ParentLeftRight, Agg.UI.VAnchor.ParentBottomTop); - string startingMessage = ""; + string startingMessage = "Press 'Add' to select an item."; if (printItem != null) { startingMessage = LocalizedString.Get("No GCode Available..."); @@ -170,6 +170,10 @@ namespace MatterHackers.MatterControl.PartPreviewWindow } } } + else + { + generateGCodeButton.Visible = false; + } centerPartPreviewAndControls.AddChild(gcodeDispalyWidget);