Skip to content

Commit 9b71103

Browse files
committed
bugfix compositeCLI height and width swap
Address ticket #97 to swap height and width to appropriate arguments of the command line version of the composite plot figure generating tool.
1 parent 65d630c commit 9b71103

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/Figure_Generation/CompositePlotCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public Integer call() throws Exception {
6262
}
6363

6464
// Generate Composite Plot
65-
PlotComposite.plotCompositeFile(inputComposite, output, true, title, COLORS, legend, pixelWidth, pixelHeight);
65+
PlotComposite.plotCompositeFile(inputComposite, output, true, title, COLORS, legend, pixelHeight, pixelWidth);
6666

6767
System.err.println("Image Generated.");
6868
return (0);

0 commit comments

Comments
 (0)