diff --git a/Sources/tart/Commands/Run.swift b/Sources/tart/Commands/Run.swift index 91fc2ca..5969c34 100644 --- a/Sources/tart/Commands/Run.swift +++ b/Sources/tart/Commands/Run.swift @@ -610,7 +610,10 @@ struct VMView: NSViewRepresentable { // Enable automatic display reconfiguration // for guests that support it - if #available(macOS 14.0, *) { + // + // This is disabled for Linux because of poor HiDPI + // support, which manifests in fonts being too small + if #available(macOS 14.0, *), vm.config.os != .linux { machineView.automaticallyReconfiguresDisplay = true }