fixed the spelling of label

an acronymed some variables txt -> text lbl -> label
This commit is contained in:
larsbrubaker 2014-04-15 10:11:56 -07:00
parent 8d07751dc7
commit 49c8a045a5
25 changed files with 188 additions and 188 deletions

View file

@ -295,10 +295,10 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
//modelInfoContainer.AddChild(new TextWidget("Size:", textColor: ActiveTheme.Instance.PrimaryTextColor));
string filamentLengthLbl = "Filament Length".Localize().ToUpper();
string filamentLengthLblFull = string.Format ("{0}:", filamentLengthLbl);
string filamentLengthLabel = "Filament Length".Localize().ToUpper();
string filamentLengthLabelFull = string.Format ("{0}:", filamentLengthLabel);
// show the filament used
modelInfoContainer.AddChild(new TextWidget(filamentLengthLblFull, textColor: ActiveTheme.Instance.PrimaryTextColor, pointSize: 9));
modelInfoContainer.AddChild(new TextWidget(filamentLengthLabelFull, textColor: ActiveTheme.Instance.PrimaryTextColor, pointSize: 9));
{
double filamentUsed = gcodeViewWidget.LoadedGCode.GetFilamentUsedMm(ActiveSliceSettings.Instance.NozzleDiameter);