We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 623e442 commit 267fb4bCopy full SHA for 267fb4b
1 file changed
build.py
@@ -69,6 +69,11 @@ def _build() -> int:
69
if assets_dir.is_dir():
70
cmd.extend(["--add-data", f"{assets_dir}{sep}assets"])
71
72
+ # QSS theme stylesheets
73
+ theme_dir = _ROOT / "src" / "ui" / "qt" / "theme"
74
+ for qss in theme_dir.glob("*.qss"):
75
+ cmd.extend(["--add-data", f"{qss}{sep}src/ui/qt/theme"])
76
+
77
# Hidden imports — all UI variants + serial + launcher
78
cmd.extend([
79
# Serial / device comms
0 commit comments