UI Tweaks

This commit is contained in:
2025-05-12 16:28:28 +02:00
parent b694d9d086
commit 986d887587
5 changed files with 39 additions and 7 deletions

View File

@@ -2,9 +2,12 @@ from kivy.uix.screenmanager import Screen
from kivy.lang import Builder
import webbrowser
from gui.popups.popups import SingleRowPopup
class AboutScreen(Screen):
def report_issue(self):
SingleRowPopup().open("Opened your web-browser")
webbrowser.open('https://github.com/janishutz/BiogasControllerApp/issues', new=2)
Builder.load_file('./gui/about/about.kv')