Skip to content

Commit

Permalink
Replace "x" in dimensions with multiplication sign (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
janbrasna committed Nov 3, 2020
1 parent 1d8dea6 commit 3ffce6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gifski/ResizableDimensions.swift
Expand Up @@ -17,7 +17,7 @@ struct Dimensions: Equatable, CustomStringConvertible {
var description: String {
switch type {
case .pixels:
return String(format: "%.0f x %.0f", value.width, value.height)
return String(format: "%.0f × %.0f", value.width, value.height)
case .percent:
return String(format: "%.0f%%", value.width)
}
Expand Down

0 comments on commit 3ffce6d

Please sign in to comment.