diff options
Diffstat (limited to 'game/src/OptionMenu/VideoTab.gd')
-rw-r--r-- | game/src/OptionMenu/VideoTab.gd | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/game/src/OptionMenu/VideoTab.gd b/game/src/OptionMenu/VideoTab.gd new file mode 100644 index 0000000..3d98678 --- /dev/null +++ b/game/src/OptionMenu/VideoTab.gd @@ -0,0 +1,9 @@ +extends HBoxContainer + +@export var initial_focus: Control + +func _notification(what : int) -> void: + match(what): + NOTIFICATION_VISIBILITY_CHANGED: + if visible and is_inside_tree(): + initial_focus.grab_focus() |