docs: barcode gen: fix acery3420 dimensions

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-02-28 19:31:35 +01:00
parent e57aa36d3e
commit d336363771
2 changed files with 4 additions and 4 deletions

View File

@ -69,8 +69,8 @@ let colors = [
'#705A81', '#705A81',
]; ];
let lto_label_width = 70; const lto_label_width = 70;
let lto_label_height = 17; const lto_label_height = 16.9;
function foreach_label(page_layout, callback) { function foreach_label(page_layout, callback) {
let count = 0; let count = 0;

View File

@ -15,9 +15,9 @@ let paper_sizes = {
page_width: 210, page_width: 210,
page_height: 297, page_height: 297,
label_width: 70, label_width: 70,
label_height: 17, label_height: 16.9,
margin_left: 0, margin_left: 0,
margin_top: 4, margin_top: 5,
column_spacing: 0, column_spacing: 0,
row_spacing: 0, row_spacing: 0,
}, },