We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3309048 commit 6738768Copy full SHA for 6738768
python_password/PyPassword.py
@@ -10,6 +10,7 @@
10
from cryptography.hazmat.primitives import hashes
11
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
12
from kivy import Config
13
+from kivy.lang import Builder
14
from kivy.properties import ObjectProperty
15
from kivy.uix.boxlayout import BoxLayout
16
from kivymd.app import MDApp
@@ -92,6 +93,7 @@ def build(self):
92
93
# Change theme (light/dark)
94
self.theme_cls.theme_style = 'Light'
95
Logger.info(f'Application: Theme style set to {self.theme_cls.theme_style}')
96
+ return Builder.load_file(file('PyPassword.kv', 'p'))
97
98
def on_start(self):
99
self.update_passwords()
python_password/PyPassword.kv …n_password/PyPassword_data/PyPassword.kvpython_password/PyPassword.kv renamed to python_password/PyPassword_data/PyPassword.kv
0 commit comments