fix teststring textbox in fontsmanager

This commit is contained in:
neon443
2025-08-17 17:47:25 +01:00
parent 4f9055b58f
commit ce11f18455
4 changed files with 9 additions and 3 deletions

View File

@@ -27,8 +27,6 @@ struct ShhShellApp: App {
hostsManager: hostsManager,
keyManager: keyManager
)
.colorScheme(hostsManager.selectedTheme.background.luminance > 0.5 ? .light : .dark)
.tint(hostsManager.tint)
}
}
}

View File

@@ -78,6 +78,9 @@ struct ContentView: View {
}
.scrollContentBackground(.hidden)
}
.colorScheme(hostsManager.selectedTheme.background.luminance > 0.5 ? .light : .dark)
.tint(hostsManager.tint)
.navigationTitle("ShhShell")
.toolbar {
ToolbarItem(placement: .confirmationAction) {

View File

@@ -53,13 +53,15 @@ struct FontManagerView: View {
.font(.custom(fontName, size: 15))
.bold(selected)
.opacity(selected ? 1 : 0.8)
.contentTransition(.numericText())
.animation(.default, value: testLine)
}
}
}
}
Section("Test String") {
TextEditor(text: $testLine)
TextField("", text: $testLine)
.fixedSize()
}
}

View File

@@ -39,4 +39,7 @@ struct HostSymbolPreview: View {
#Preview {
HostSymbolPreview(symbol: HostSymbol.desktopcomputer, label: "lo0")
.border(.red)
HostSymbolPreview(symbol: HostSymbol.laptopcomputer, label: "lo1", horizontal: true)
.border(.blue)
}