Buttons originally visible in ScrollContainer not clickable - Help

Godot Version

4.3

Question

When I have a set of three buttons in a control node as a child of a scrollcontainer, I can only press the parts that were originally not visible and had to be scrolled to in the scrollcontainer. Any help appreciated!

One of the most common reasons for unclickable buttons is that there’s some kind of control node in front of them. If this is the case, you can set the control node’s mouse filter to ignore, and this will allow you to click any nodes behind it.

1 Like

I got similar issue in 3.6: some controls are created dynamically, put inside of scroll container and if the new button happens to be under the mouse cursor, it’s not clickable until I scroll the container a bit, drives me nuts