mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 22:04:24 +00:00
14 lines
383 B
Python
14 lines
383 B
Python
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')
|