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 <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-02-28 19:32:30 +01:00
parent d336363771
commit c1570b373f
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ Ext.define('PageLayoutPanel', {
xtype: 'numberfield',
name: 'label_height',
fieldLabel: 'Label height',
minValue: 17,
minValue: 15,
allowBlank: false,
value: 17,
},