Skip to content

Commit

Permalink
Fix bug in dmg builder so that it actually reads in the configuration…
Browse files Browse the repository at this point in the history
… file
  • Loading branch information
djp3 authored and jonasschnelli committed Dec 30, 2016
1 parent b01667c commit 2fb98f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/macdeploy/macdeployqtplus
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2fb98f6

Please sign in to comment.