fix: Only type to search in App mode

This commit is contained in:
Jonatan Pettersson 2025-12-03 21:24:02 +01:00
parent 3baaf4b452
commit 839465a4dd

View file

@ -2984,7 +2984,8 @@ impl Application for App {
}
// Uncaptured keys with only shift modifiers go to the search or location box
if !modifiers.logo()
if matches!(self.mode, Mode::App)
&& !modifiers.logo()
&& !modifiers.control()
&& !modifiers.alt()
&& matches!(key, Key::Character(_))