From 1ccc575320a766977a800f372450c43899f5dd51 Mon Sep 17 00:00:00 2001 From: hammi Date: Thu, 13 Aug 2026 21:47:20 +0200 Subject: [PATCH] Add an empty row so the content of the page before isn't stuck there. Add an empty row so the content of the page before isn't stuck there. --- buba/animations/time.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buba/animations/time.py b/buba/animations/time.py index 3cb789f..21e3bcf 100644 --- a/buba/animations/time.py +++ b/buba/animations/time.py @@ -14,7 +14,7 @@ class BubaTime(BubaAnimation): self.buba.text(page=0, row=0, col_start=0, col_end=119, text="Chaos Computer Club", align=BubaCmd.ALIGN_CENTER) self.buba.text(page=0, row=1, col_start=0, col_end=119, text="Hansestadt Hamburg", align=BubaCmd.ALIGN_CENTER) # self.buba.text(page=0, row=2, col_start=0, col_end=119, text=f"{self.ip}", align=BubaCmd.ALIGN_CENTER) - self.buba.text(page=0, row=1, col_start=0, col_end=119, text=" ", align=BubaCmd.ALIGN_CENTER) # Add an empty row so the content of the page before isn't stuck there. + self.buba.text(page=0, row=2, col_start=0, col_end=119, text=" ", align=BubaCmd.ALIGN_CENTER) # Add an empty row so the content of the page before isn't stuck there. self.buba.text(page=0, row=3, col_start=0, col_end=119, text=datetime.now().strftime("%Y-%m-%d %H:%M"), align=BubaCmd.ALIGN_CENTER) sleep(10)