From e7a4ca2a8d4e929d8f57e7ea7bfe71e86f29d080 Mon Sep 17 00:00:00 2001 From: larsbrubaker Date: Mon, 15 Dec 2014 17:06:37 -0800 Subject: [PATCH] Improved connection message. --- SlicerConfiguration/SliceSettingsWidget.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SlicerConfiguration/SliceSettingsWidget.cs b/SlicerConfiguration/SliceSettingsWidget.cs index 4f1142e1e..ea0350795 100644 --- a/SlicerConfiguration/SliceSettingsWidget.cs +++ b/SlicerConfiguration/SliceSettingsWidget.cs @@ -86,8 +86,8 @@ namespace MatterHackers.MatterControl.SlicerConfiguration noConnectionMessageContainer.HAnchor = Agg.UI.HAnchor.ParentLeftRight; noConnectionMessageContainer.Height = 90; - string noConnectionString = LocalizedString.Get("No printer is currently selected. Select a printer to edit slice settings."); - noConnectionString += "\n\n " + LocalizedString.Get("NOTE: You need to select a printer, but do not need to connect to it."); + string noConnectionString = LocalizedString.Get("No printer is currently selected. Please select a printer to edit slice settings."); + noConnectionString += "\n\n" + LocalizedString.Get("NOTE: You need to select a printer, but do not need to connect to it."); TextWidget noConnectionMessage = new TextWidget(noConnectionString, pointSize:10); noConnectionMessage.Margin = new BorderDouble(5); noConnectionMessage.TextColor = ActiveTheme.Instance.PrimaryTextColor;