summaryrefslogtreecommitdiffstats
path: root/scene/gui/panel.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-01-13 08:55:16 +0100
committerRémi Verschelde <rverschelde@gmail.com>2020-01-13 14:49:01 +0100
commite2bebfbd4ca04682724b9e768db35865bb445216 (patch)
tree36db10183278a8e923dbcbcec1d04a69907d4ea4 /scene/gui/panel.cpp
parent7a15569c6fdc403818ae4ccc2e21c152859316db (diff)
downloadredot-engine-e2bebfbd4ca04682724b9e768db35865bb445216.tar.gz
Use MOUSE_FILTER_PASS for all containers (but PanelContainer)
Containers are meant to forward mouse input to their the Controls they contain. PanelContainer has a visible Panel stylebox, so it still defaults to STOP. Fixes #34933.
Diffstat (limited to 'scene/gui/panel.cpp')
-rw-r--r--scene/gui/panel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/panel.cpp b/scene/gui/panel.cpp
index aa1a381934..0356607071 100644
--- a/scene/gui/panel.cpp
+++ b/scene/gui/panel.cpp
@@ -42,7 +42,7 @@ void Panel::_notification(int p_what) {
}
Panel::Panel() {
-
+ // Has visible stylebox, so stop by default.
set_mouse_filter(MOUSE_FILTER_STOP);
}