From c302bc2ae01ac2ac84bbfa6f99c10e1caee64ac7 Mon Sep 17 00:00:00 2001 From: Kevin Pope Date: Thu, 20 Feb 2014 09:47:08 -0800 Subject: [PATCH] Don't translate placeholder text. --- ActionBar/PrintStatusRow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ActionBar/PrintStatusRow.cs b/ActionBar/PrintStatusRow.cs index f13819fbe..939d4c15e 100644 --- a/ActionBar/PrintStatusRow.cs +++ b/ActionBar/PrintStatusRow.cs @@ -123,9 +123,9 @@ namespace MatterHackers.MatterControl.ActionBar topRow.AddChild(activePrintLabel); - activePrintName = getPrintStatusLabel(new LocalizedString("this is the biggest name we will allow").Translated, pointSize: 14); + activePrintName = getPrintStatusLabel("this is the biggest name we will allow", pointSize: 14); activePrintName.AutoExpandBoundsToText = false; - activePrintStatus = getPrintStatusLabel(new LocalizedString("this is the biggest label we will allow - bigger").Translated, pointSize: 11); + activePrintStatus = getPrintStatusLabel("this is the biggest label we will allow - bigger", pointSize: 11); activePrintStatus.AutoExpandBoundsToText = false; activePrintStatus.Text = ""; activePrintStatus.Margin = new BorderDouble(top: 3);