Move qml files to their own folder

This commit is contained in:
Toast 2025-05-29 12:27:50 +02:00
parent 20f459ddad
commit ad4f429cd9
2 changed files with 1 additions and 1 deletions

View file

@ -24,7 +24,7 @@ def main():
os.environ["QT_QUICK_CONTROLS_STYLE"] = "org.kde.desktop"
base_path = os.path.abspath(os.path.dirname(__file__))
url = QUrl(f"file://{base_path}/Main.qml")
url = QUrl(f"file://{base_path}/qml/Main.qml")
engine.load(url)
if len(engine.rootObjects()) == 0: