Skip to content

Commit

Permalink
language picker: fux button types
Browse files Browse the repository at this point in the history
  • Loading branch information
dulvui committed Oct 11, 2024
1 parent 7c6611a commit 54415d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions game/src/screens/settings/language_picker/language_picker.gd
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ extends Control

signal language_change

@onready var en: TextureButton = $HBoxContainer/English
@onready var pt: TextureButton = $HBoxContainer/Portuguese
@onready var it: TextureButton = $HBoxContainer/Italian
@onready var es: TextureButton = $HBoxContainer/Spanish
@onready var de: TextureButton = $HBoxContainer/German
@onready var en: Button = $HBoxContainer/English
@onready var pt: Button = $HBoxContainer/Portuguese
@onready var it: Button = $HBoxContainer/Italian
@onready var es: Button = $HBoxContainer/Spanish
@onready var de: Button = $HBoxContainer/German


func _ready() -> void:
Expand Down

0 comments on commit 54415d1

Please sign in to comment.