buba/animations/icalevents.py aktualisiert

Fix Datum abgeschnitten.
This commit is contained in:
hammi 2025-06-03 18:19:05 +02:00
commit 2921c723c3

View file

@ -48,6 +48,6 @@ class IcalEvents(BubaAnimation):
else: else:
when = event.start.strftime("%d.%m.") when = event.start.strftime("%d.%m.")
self.buba.text(page=0, row=i + 1, col_start=0, col_end=104, text=self.ellipsis(event.summary)) self.buba.text(page=0, row=i + 1, col_start=0, col_end=104, text=self.ellipsis(event.summary))
self.buba.text(page=0, row=i + 1, col_start=105, col_end=119, self.buba.text(page=0, row=i + 1, col_start=104, col_end=119,
text=when, align=BubaCmd.ALIGN_RIGHT) text=when, align=BubaCmd.ALIGN_RIGHT)
sleep(10) sleep(10)