Browse Source

Fix bug in dmg builder so that it actually reads in the configuration file

0.14
Don Patterson 8 years ago committed by Jonas Schnelli
parent
commit
2fb98f6661
No known key found for this signature in database
GPG Key ID: 29D4BCB6416F53EC
  1. 2
      contrib/macdeploy/macdeployqtplus

2
contrib/macdeploy/macdeployqtplus

@ -852,7 +852,7 @@ if config.dmg is not None: @@ -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:

Loading…
Cancel
Save