Skip to content

Commit 2fb98f6

Browse files
djp3jonasschnelli
authored andcommitted
Fix bug in dmg builder so that it actually reads in the configuration file
1 parent b01667c commit 2fb98f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/macdeploy/macdeployqtplus

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ if config.dmg is not None:
852852
"items_positions" : "\n ".join(items_positions)
853853
}
854854
if "window_bounds" in fancy:
855-
params["window.bounds"] = ",".join([str(p) for p in fancy["window_bounds"]])
855+
params["window_bounds"] = ",".join([str(p) for p in fancy["window_bounds"]])
856856
if "icon_size" in fancy:
857857
params["icon_size"] = str(fancy["icon_size"])
858858
if bg_path is not None:

0 commit comments

Comments
 (0)