Focus shift to a tab in a tab container with keyboard

Godot Version

4.5

Question

I have the following setup in my game settings:

Which is structured like this:

The problem is that I’d like the user to be able to control the UI with just the keyboard, however there is no way to get down from the focused tab (I know how to make the tab focused) to the volume sliders. Or back up from the sliders to the tab.

I’d usually solve this problem by manually assigning the focus neighbor, but neither assigning the panel or the tab container as the upper neighbor worked.

Is there any solution to this issue? Would be grateful for any help!

I’ve not been able to reproduce your issue. It seems to work fine.

1 Like

It appears that the issue was that I had some other buttons behind the settings menu (the New Game and Load buttons) which were grabbing the focus instead of the tabs in the tab container. I have disabled their focus through code upon the settings menu opening, and now it works fine. Thanks for the reply, it helped me find the issue!

1 Like