diff options
author | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2023-08-06 13:07:28 +0200 |
---|---|---|
committer | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2023-08-09 12:34:22 +0200 |
commit | 59c13fea5da195fe550f95b247bf2b84daf05b1a (patch) | |
tree | 9ec4db90a5be025c777a4ef17649e6d202763655 /scene/main/window.h | |
parent | f7bc653cbe81018fe362472a0143b7153a52f929 (diff) | |
download | redot-engine-59c13fea5da195fe550f95b247bf2b84daf05b1a.tar.gz |
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.
Diffstat (limited to 'scene/main/window.h')
-rw-r--r-- | scene/main/window.h | 4 |
1 files changed, 4 insertions, 0 deletions
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<Shortcut> debugger_stop_shortcut; protected: |