Merge pull request #661 from stonerl/number-fields

Advanced settings: make number fields .numPad
This commit is contained in:
Arkadiusz Fal
2024-05-16 18:19:59 +02:00
committed by GitHub

View File

@@ -73,7 +73,7 @@ struct AdvancedSettings: View {
.frame(minWidth: 140, alignment: .leading)
TextField("cache-secs", text: $mpvCacheSecs)
#if !os(macOS)
.keyboardType(.URL)
.keyboardType(.numberPad)
#endif
}
.multilineTextAlignment(.trailing)
@@ -83,7 +83,7 @@ struct AdvancedSettings: View {
.frame(minWidth: 140, alignment: .leading)
TextField("cache-pause-wait", text: $mpvCachePauseWait)
#if !os(macOS)
.keyboardType(.URL)
.keyboardType(.numberPad)
#endif
}
.multilineTextAlignment(.trailing)