From 59c13fea5da195fe550f95b247bf2b84daf05b1a Mon Sep 17 00:00:00 2001 From: Markus Sauermann <6299227+Sauermann@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:07:28 +0200 Subject: Fix nodes receiving mouse events in black bars of `Window` Previously for InputEvents there was no distinction between Window-area and Viewport-area. This was problematic in cases where stretching was used and the Window contained black bars at the sides of the Viewport. This PR separates the area of Window and Viewport regarding InputEvents. --- scene/main/window.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scene/main/window.h') diff --git a/scene/main/window.h b/scene/main/window.h index 18ddd89662..173ec388e9 100644 --- a/scene/main/window.h +++ b/scene/main/window.h @@ -197,6 +197,10 @@ private: void _event_callback(DisplayServer::WindowEvent p_event); virtual bool _can_consume_input_events() const override; + bool mouse_in_window = false; + void _update_mouse_over(Vector2 p_pos) override; + void _mouse_leave_viewport() override; + Ref debugger_stop_shortcut; protected: -- cgit v1.2.3