Continuing packaging with macos and windows, also fixing a few bugs in the process.

This commit is contained in:
Adsooi 2021-06-22 01:33:42 +02:00
parent 1498028036
commit 1a0b07c79f
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
19 changed files with 58 additions and 28 deletions

View file

@ -122,7 +122,10 @@ def run():
if not engine.rootObjects():
print("No root object")
exit(-1)
app.exec_()
exit_code = app.exec_()
os.remove(tempfile)
exit(exit_code)
if __name__ == "__main__":
run()

View file

@ -29,7 +29,7 @@ D.Dialog {
Image {
id: logo
source: "../logplotter.svg"
source: "../../logplotter.svg"
sourceSize.width: 64
sourceSize.height: 64
width: 64

View file

@ -438,7 +438,7 @@ ListView {
icon.name: modelData
icon.width: 24
icon.height: 24
icon.color: 'white'//sysPalette.windowText
icon.color: sysPalette.windowText
onClicked: {
var newObj = Objects.createNewRegisteredObject(modelData)