Skip to content

Commit

Permalink
Fix default output filename wildcard
Browse files Browse the repository at this point in the history
  • Loading branch information
mminer committed May 23, 2021
1 parent 419b7db commit 40cb86d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Editor/BigImageRecorderSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public BigImageRecorderSettings()
FileNameGenerator.AddWildcard(tileColumnWildcard, session =>
(session?.recorder as BigImageRecorder)?.ColumnBeingWritten.ToString() ?? "0");

FileNameGenerator.FileName = $"image_{DefaultWildcard.Frame}_{tileRowWildcard}-{tileRowWildcard}";
FileNameGenerator.FileName = $"image_{DefaultWildcard.Frame}_{tileRowWildcard}-{tileColumnWildcard}";
}
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ example, if you install ImageMagick on macOS using Homebrew, enter

The arguments can contain the same wildcards as the file name. Use these to
specify the frame, rows, and columns, e.g. `-mode concatenate -tile
<Rows>x<Columns> image_<Frame>*.png out_<Frame>.png`.
<Rows>x<Columns> image_<Frame>*.png <Frame>.png`.

0 comments on commit 40cb86d

Please sign in to comment.