diff --git a/static/src/js/escpos_generator.js b/static/src/js/escpos_generator.js index 4a4b927..1ba1dc2 100755 --- a/static/src/js/escpos_generator.js +++ b/static/src/js/escpos_generator.js @@ -337,8 +337,8 @@ export class EscPosGenerator { } } - // Feed and cut (reduced feed to 1 line to prevent footer white spaces on integrated Android/iMin printers) - cmds.push(...this.feedAndCut(1)); + // Feed and cut (set feed to 4 lines to ensure the footer clears the cutter blade before cutting) + cmds.push(...this.feedAndCut(4)); return new Uint8Array(cmds); }