From 1ba7faed1b22c729682b2bf726c50649a8df9862 Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Sat, 7 Jun 2025 17:59:42 +0200 Subject: [PATCH] Write title to correct position --- 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 80de379..f681171 100644 --- a/buba/animations/time.py +++ b/buba/animations/time.py @@ -10,7 +10,7 @@ class BubaTime(BubaAnimation): super().__init__(buba) def run(self): - self.buba.simple_text(page=0, row=0, col=91, text="Bus-Bahn-Anzeige") + self.buba.text(page=0, row=0, col_start=0, col_end=92, text="Bus-Bahn-Anzeige") self.buba.simple_text(page=0, row=1, col=0, text="Chaos Computer Club") self.buba.simple_text(page=0, row=2, col=0, text="Hansestadt Hamburg") self.buba.simple_text(page=0, row=3, col=0, text="Hello, world!")