Update to rust 1.95

This commit is contained in:
2026-04-18 11:23:01 -04:00
parent f37ee878e1
commit dd9e04f636
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -400,10 +400,10 @@ impl ApplicationHandler<UserEvent> for Application {
}
if !response.consumed {
match event {
WindowEvent::KeyboardInput { event, .. } => {
if !self.app.handle_key_event(viewport_id, &event) {
self.controllers.handle_key_event(&event);
}
WindowEvent::KeyboardInput { event, .. }
if !self.app.handle_key_event(viewport_id, &event) =>
{
self.controllers.handle_key_event(&event);
}
WindowEvent::Focused(new_focused) => {
self.focused = new_focused.then_some(viewport_id);