Skip to content

Commit 1c141d4

Browse files
committed
Settings layout tweaks
1 parent 15f83f2 commit 1c141d4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

VirtualUI/Source/Settings/Components/SettingsFooter.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,16 @@ struct SettingsFooter: View {
4545
extension 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
}

VirtualUI/Source/Settings/VirtualizationSettingsView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)