Browse Source

Improve scrolling perf of QEMU tab on macOS

Jed Fox 3 years ago
parent
commit
b048e25ca7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Platform/Shared/VMConfigQEMUView.swift

+ 1 - 1
Platform/Shared/VMConfigQEMUView.swift

@@ -79,7 +79,7 @@ struct VMConfigQEMUView: View {
                     let qemuSystem = UTMQemuSystem(configuration: config, imgPath: URL(fileURLWithPath: "Images"))
                     let fixedArgs = arguments(from: qemuSystem.argv)
                     #if os(macOS)
-                    VStack {
+                    LazyVStack {
                         ForEach(fixedArgs) { arg in
                             TextField("", text: .constant(arg.string))
                         }.disabled(true)