minor improvements

This commit is contained in:
David Rodenkirchen
2024-08-27 15:34:04 +02:00
parent 259786a1d3
commit 691602a727
2 changed files with 14 additions and 18 deletions
@@ -8,7 +8,7 @@ class AnimatedText(Component):
self._display_printing: list[bool] = [False]
self.text_comp = Text("")
async def display_text(self, success: bool, text: str, speed: float = 0.08) -> None:
async def display_text(self, success: bool, text: str, speed: float = 0.06, font_size: float = 0.9) -> None:
if self._display_printing[0]:
return
else:
@@ -17,7 +17,7 @@ class AnimatedText(Component):
if success:
self.text_comp.style = TextStyle(
fill=self.session.theme.success_color,
font_size=0.9
font_size=font_size
)
for c in text:
self.text_comp.text = self.text_comp.text + c
@@ -26,7 +26,7 @@ class AnimatedText(Component):
else:
self.text_comp.style = TextStyle(
fill=self.session.theme.danger_color,
font_size=0.9
font_size=font_size
)
for c in text:
self.text_comp.text = self.text_comp.text + c