File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
VirtualUI/Source/Settings Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -45,11 +45,16 @@ struct SettingsFooter: View {
4545extension View {
4646 @ViewBuilder
4747 func settingsFooterStyle( ) -> some View {
48+ let padding : Double = if #available( macOS 26 , * ) {
49+ 0
50+ } else {
51+ 8
52+ }
4853 frame ( maxWidth: . infinity, alignment: . leading)
4954 . foregroundStyle ( . secondary)
5055 . font ( . footnote)
5156 . multilineTextAlignment ( . leading)
52- . padding ( . leading, 8 )
57+ . padding ( . leading, padding )
5358 . textSelection ( . enabled)
5459 }
5560}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ struct VirtualizationSettingsView: View {
1313 @Binding var settings : VBSettings
1414
1515 #if DEBUG
16- private var _forceShowBootImageFormatSettings : Bool { true }
16+ private var _forceShowBootImageFormatSettings : Bool { false }
1717 #endif
1818
1919 private var showBootImageFormatSection : Bool {
You can’t perform that action at this time.
0 commit comments