fix: disable exit on unfocus, broken on sway
1 files changed, 1 insertions(+), 1 deletions(-) M src/gandalf.rs
M src/gandalf.rs => src/gandalf.rs +1 -1
@@ 201,7 201,7 @@ impl Application for Gandalf { modifiers: _, key_code, }) => input::handle(key_code), - Event::Window(window::Event::Unfocused) => Some(Message::Exit), + //Event::Window(window::Event::Unfocused) => Some(Message::Exit), _ => None, }) }