diff options
| author | Don Patterson <[email protected]> | 2016-12-22 08:02:15 -0800 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2016-12-30 10:44:58 +0100 |
| commit | 2fb98f6661887f125837653c8f5577dbd6c124c0 (patch) | |
| tree | 895e2e24b06b6f39eca2e829d303c6cb1c49e340 /contrib/macdeploy/macdeployqtplus | |
| parent | Mention RSVG dependency when creating the disk image on OSX (diff) | |
| download | discoin-2fb98f6661887f125837653c8f5577dbd6c124c0.tar.xz discoin-2fb98f6661887f125837653c8f5577dbd6c124c0.zip | |
Fix bug in dmg builder so that it actually reads in the configuration file
Diffstat (limited to 'contrib/macdeploy/macdeployqtplus')
| -rwxr-xr-x | contrib/macdeploy/macdeployqtplus | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index 6d43af421..73d4f159d 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -852,7 +852,7 @@ if config.dmg is not None: "items_positions" : "\n ".join(items_positions) } if "window_bounds" in fancy: - params["window.bounds"] = ",".join([str(p) for p in fancy["window_bounds"]]) + params["window_bounds"] = ",".join([str(p) for p in fancy["window_bounds"]]) if "icon_size" in fancy: params["icon_size"] = str(fancy["icon_size"]) if bg_path is not None: |