diff --git a/ApplicationView/WidescreenPanel.cs b/ApplicationView/WidescreenPanel.cs index f0f7610c7..3eaea727b 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 9458ab730..d998e7dd6 100644 --- a/PartPreviewWindow/GcodeViewBasic.cs +++ b/PartPreviewWindow/GcodeViewBasic.cs @@ -119,7 +119,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..."); @@ -159,6 +159,10 @@ namespace MatterHackers.MatterControl.PartPreviewWindow } } } + else + { + generateGCodeButton.Visible = false; + } centerPartPreviewAndControls.AddChild(gcodeDispalyWidget);