mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
22 lines
696 B
Python
22 lines
696 B
Python
from kivy.properties import StringProperty
|
|
|
|
from anixstream.View.base_screen import BaseScreenView
|
|
from anixstream.Utility.utils import read_crash_file
|
|
from anixstream.Utility.kivy_markup_helper import color_text, bolden
|
|
|
|
|
|
class CrashLogScreenView(BaseScreenView):
|
|
"""The crash log screen"""
|
|
|
|
crash_text = StringProperty()
|
|
|
|
def __init__(self, **kw):
|
|
super().__init__(**kw)
|
|
if crashes := read_crash_file():
|
|
self.crash_text = crashes
|
|
else:
|
|
self.crash_text = color_text(
|
|
f"No Crashes so far :) and if there are any in the future {bolden('please report! Okay?')}",
|
|
self.theme_cls.primaryColor,
|
|
)
|