From 5d18857ef3d0429723d91f0b672c43b7655d5b1d Mon Sep 17 00:00:00 2001 From: Carbonhell Date: Thu, 9 Apr 2020 18:43:12 +0200 Subject: [PATCH] Fixes mouse_input event not being pushed everytime --- voxygen/src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/window.rs b/voxygen/src/window.rs index 7229f007d0..da2ff7f6a9 100644 --- a/voxygen/src/window.rs +++ b/voxygen/src/window.rs @@ -523,8 +523,8 @@ impl Window { state == glutin::ElementState::Pressed, )); } - events.push(Event::MouseButton(button, state)); } + events.push(Event::MouseButton(button, state)); }, glutin::WindowEvent::KeyboardInput { input, .. } => { if let Some(key) = input.virtual_keycode {