From c1570b373f810810b122a7ac08acc98e4b4bb858 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sun, 28 Feb 2021 19:32:30 +0100 Subject: [PATCH] doc: barcode gen: allow label heights from 15 mm Americans seem to sometimes use Avery 6577 which has 5/8" x 3" labels, equaling 15.875 mm x 76.2 mm, so do not set the lower bound to 17mm (which even breaks our used Avery 3240 sheets which have an label height of 16.9 mm Signed-off-by: Thomas Lamprecht --- docs/lto-barcode/page-layout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/lto-barcode/page-layout.js b/docs/lto-barcode/page-layout.js index df704b15..63df6b11 100644 --- a/docs/lto-barcode/page-layout.js +++ b/docs/lto-barcode/page-layout.js @@ -106,7 +106,7 @@ Ext.define('PageLayoutPanel', { xtype: 'numberfield', name: 'label_height', fieldLabel: 'Label height', - minValue: 17, + minValue: 15, allowBlank: false, value: 17, },