mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 13:54:24 +00:00
11 lines
280 B
Python
11 lines
280 B
Python
from kivy.uix.screenmanager import Screen
|
|
from kivy.lang import Builder
|
|
import webbrowser
|
|
|
|
|
|
class AboutScreen(Screen):
|
|
def report_issue(self):
|
|
webbrowser.open('https://github.com/janishutz/BiogasControllerApp/issues', new=2)
|
|
|
|
Builder.load_file('./gui/about/about.kv')
|