From 2b9f62b239b1032da3cf130d28188d8e681c35d9 Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Mon, 28 Feb 2022 01:31:08 +0100 Subject: [PATCH] ahh yes the english language --- Instructions/BarcodeInstruction.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Instructions/BarcodeInstruction.cs b/Instructions/BarcodeInstruction.cs index cb3533b..38c840e 100644 --- a/Instructions/BarcodeInstruction.cs +++ b/Instructions/BarcodeInstruction.cs @@ -18,7 +18,7 @@ public class BarcodeInstruction : BaseInstruction public Alignment alignment {get; set; } = Alignment.Left; [JsonConverter(typeof(JsonStringEnumConverter))] - public BarLabelPrintPosition lablePos {get; set; } = BarLabelPrintPosition.Below; + public BarLabelPrintPosition labelPos {get; set; } = BarLabelPrintPosition.Below; // [JsonConverter(typeof(JsonStringEnumConverter))] // public BarWidth width { get; set; } = BarWidth.Default; @@ -36,8 +36,8 @@ public class BarcodeInstruction : BaseInstruction commands.Add(alignmentCommand(alignment)); - if (lablePos != BarLabelPrintPosition.Below){ - commands.Add(e.SetBarLabelPosition(lablePos)); + if (labelPos != BarLabelPrintPosition.Below){ + commands.Add(e.SetBarLabelPosition(labelPos)); } if (height > 0)