diff options
Diffstat (limited to 'widget/src')
-rw-r--r-- | widget/src/shader.rs | 2 | ||||
-rw-r--r-- | widget/src/text_input.rs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/widget/src/shader.rs b/widget/src/shader.rs index fe6214db..8e334693 100644 --- a/widget/src/shader.rs +++ b/widget/src/shader.rs @@ -109,7 +109,7 @@ where Some(Event::Keyboard(keyboard_event)) } core::Event::Touch(touch_event) => Some(Event::Touch(touch_event)), - core::Event::Window(window::Event::RedrawRequested(instant)) => { + core::Event::Window(_, window::Event::RedrawRequested(instant)) => { Some(Event::RedrawRequested(instant)) } _ => None, diff --git a/widget/src/text_input.rs b/widget/src/text_input.rs index 27efe755..f1688746 100644 --- a/widget/src/text_input.rs +++ b/widget/src/text_input.rs @@ -1000,14 +1000,14 @@ where state.keyboard_modifiers = modifiers; } - Event::Window(window::Event::Unfocused) => { + Event::Window(_, window::Event::Unfocused) => { let state = state(); if let Some(focus) = &mut state.is_focused { focus.is_window_focused = false; } } - Event::Window(window::Event::Focused) => { + Event::Window(_, window::Event::Focused) => { let state = state(); if let Some(focus) = &mut state.is_focused { @@ -1017,7 +1017,7 @@ where shell.request_redraw(window::RedrawRequest::NextFrame); } } - Event::Window(window::Event::RedrawRequested(now)) => { + Event::Window(_, window::Event::RedrawRequested(now)) => { let state = state(); if let Some(focus) = &mut state.is_focused { |