@@ -60,7 +60,7 @@ struct RAMSlider: View {
}
NumberTextField("", number: $systemMemory, prompt: "Size", onEditingChanged: validateMemorySize)
.frame(width: 80)
- Text("MB")
+ Text("MiB")
}.frame(height: 30)
@@ -40,9 +40,9 @@ struct SizeTextField: View {
Button(action: { isGiB.toggle() }, label: {
Group {
if isGiB {
- Text("GB")
+ Text("GiB")
} else {
}.foregroundColor(.blue)
}).buttonStyle(.plain)
@@ -55,7 +55,7 @@ struct VMConfigSystemView: View {
HStack {
NumberTextField("", number: $config.jitCacheSize, prompt: "Default", onEditingChanged: validateMemorySize)
.multilineTextAlignment(.trailing)
@@ -28,7 +28,7 @@ struct VMWizardDrivesView: View {
NumberTextField("", number: $wizardState.storageSizeGib)
.textFieldStyle(.roundedBorder)
.frame(maxWidth: 50)
} header: {
Text("Size")