Skip to content

Commit

Permalink
Increase maximum history size to 9999
Browse files Browse the repository at this point in the history
  • Loading branch information
p0deje committed Jul 31, 2024
1 parent f45c2ca commit 5a67324
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Maccy/Settings/StorageSettingsPane.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct StorageSettingsPane: View {
private let sizeFormatter: NumberFormatter = {
let formatter = NumberFormatter()
formatter.minimum = 1
formatter.maximum = 999
formatter.maximum = 9999
return formatter
}()

Expand Down Expand Up @@ -97,7 +97,7 @@ struct StorageSettingsPane: View {
TextField("", value: $size, formatter: sizeFormatter)
.frame(width: 80)
.help(Text("SizeTooltip", tableName: "StorageSettings"))
Stepper("", value: $size, in: 1...999)
Stepper("", value: $size, in: 1...9999)
.labelsHidden()
}
}
Expand Down

0 comments on commit 5a67324

Please sign in to comment.