Skip to content

photos-export-dialog: Replace %e with %-d in the default folder name

Piotr Drąg requested to merge wip/piotrdrag/removespace into master

%e is the day of the month, with a space preceding single digits. %d is two-digit day of the month with leading zeros, but the “-” modifier removes leading zeros.

%-e is functionally identical to %-d, so we can use whichever.

Closes #65 (closed)

Merge request reports