From b293408cbcfe2620649479861b93a992451801d7 Mon Sep 17 00:00:00 2001 From: Joscha Date: Sat, 30 Mar 2024 16:28:01 +0100 Subject: [PATCH] Reduce feed distance --- showbits-thermal-printer/src/printer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/showbits-thermal-printer/src/printer.rs b/showbits-thermal-printer/src/printer.rs index 95edb22..f625ef8 100644 --- a/showbits-thermal-printer/src/printer.rs +++ b/showbits-thermal-printer/src/printer.rs @@ -58,7 +58,7 @@ impl Printer { pub fn feed(&mut self) -> anyhow::Result<()> { if let Some(printer) = &mut self.printer { - printer.init()?.feeds(4)?.print()?; + printer.init()?.feeds(3)?.print()?; } Ok(())