I have a screen with many different controls. I have the 'N' key set to open a note taking window. Normally it works fine, except when I try to hit 'N' after making a selection on a option button. After that selection, no keystrokes are noticed. I am assuming it is a focus issue. I have put around focus_owner = get_focus_owner()
in a few places and then done:
func _on_StarListButton_focus_exited():
focus_owner.grab_focus()
to try and restore focus to the keyboard. I even tried to
func _unhandled_input(event):
focus_owner.grab_focus()
nothing seem to restore the ability to capture a keystroke? Any ideas?