aboutsummaryrefslogtreecommitdiff
path: root/game/src/OptionMenu/GeneralTab.gd
diff options
context:
space:
mode:
Diffstat (limited to 'game/src/OptionMenu/GeneralTab.gd')
-rw-r--r--game/src/OptionMenu/GeneralTab.gd8
1 files changed, 8 insertions, 0 deletions
diff --git a/game/src/OptionMenu/GeneralTab.gd b/game/src/OptionMenu/GeneralTab.gd
new file mode 100644
index 0000000..8aed783
--- /dev/null
+++ b/game/src/OptionMenu/GeneralTab.gd
@@ -0,0 +1,8 @@
+extends HBoxContainer
+
+@export var initial_focus: Button
+
+func _notification(what : int) -> void:
+ match(what):
+ NOTIFICATION_VISIBILITY_CHANGED:
+ if visible: initial_focus.grab_focus()