Continuing packaging with macos and windows, also fixing a few bugs in the process.
This commit is contained in:
parent
1498028036
commit
1a0b07c79f
19 changed files with 58 additions and 28 deletions
|
@ -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()
|
||||
|
|
|
@ -29,7 +29,7 @@ D.Dialog {
|
|||
|
||||
Image {
|
||||
id: logo
|
||||
source: "../logplotter.svg"
|
||||
source: "../../logplotter.svg"
|
||||
sourceSize.width: 64
|
||||
sourceSize.height: 64
|
||||
width: 64
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue