think this would work
All checks were successful
Build MuCaPy Executable / build-and-package (push) Successful in 1m46s
All checks were successful
Build MuCaPy Executable / build-and-package (push) Successful in 1m46s
This commit is contained in:
@@ -30,7 +30,9 @@ jobs:
|
|||||||
- name: Build executable with PyInstaller
|
- name: Build executable with PyInstaller
|
||||||
run: |
|
run: |
|
||||||
pyinstaller --onefile --windowed mucapy/main.py \
|
pyinstaller --onefile --windowed mucapy/main.py \
|
||||||
--add-data "mucapy/styling:styling"
|
--add-data "mucapy/styling:styling" \
|
||||||
|
--add-data "mucapy/models:models"
|
||||||
|
|
||||||
|
|
||||||
- name: Upload executable artifact
|
- name: Upload executable artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
|
|||||||
@@ -857,7 +857,7 @@ class AboutWindow(QDialog):
|
|||||||
layout.addWidget(close_btn, alignment=Qt.AlignCenter)
|
layout.addWidget(close_btn, alignment=Qt.AlignCenter)
|
||||||
|
|
||||||
# Set Styling for About Section
|
# Set Styling for About Section
|
||||||
style_file = getpath.resource_path("mucapy/styling/about.qss")
|
style_file = getpath.resource_path("styling/about.qss")
|
||||||
with open(style_file,"r") as aboutstyle:
|
with open(style_file,"r") as aboutstyle:
|
||||||
self.setStyleSheet(aboutstyle.read())
|
self.setStyleSheet(aboutstyle.read())
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user