Description
Cmd+F keyboard shortcut to focus the search field in the toolbar doesn't work.
Root Cause
SwiftUI's FocusState doesn't work properly with TextFields inside toolbars. This is a known SwiftUI limitation.
Possible Solutions
- Move search field from toolbar into main content area
- Use AppKit's
NSSearchField instead of SwiftUI TextField
- Use a custom NSViewRepresentable to manually manage focus
Workaround
Users can click the search field directly with the mouse.
Description
Cmd+F keyboard shortcut to focus the search field in the toolbar doesn't work.
Root Cause
SwiftUI's
FocusStatedoesn't work properly with TextFields inside toolbars. This is a known SwiftUI limitation.Possible Solutions
NSSearchFieldinstead of SwiftUI TextFieldWorkaround
Users can click the search field directly with the mouse.