mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-03-12 22:35:18 +00:00
Fix "Close" button in the Preferences not being translated from a non-English language
Before this commit, if Pixelorama started in a language other than English and then the user switched languages, the Close button's string would remain translated in the previous language
This commit is contained in:
parent
5a9a3ba495
commit
37eee319b5
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ class Preference:
|
|||
|
||||
func _ready() -> void:
|
||||
# Replace OK since preference changes are being applied immediately, not after OK confirmation
|
||||
get_ok().text = tr("Close")
|
||||
get_ok().text = "Close"
|
||||
shrink_h_slider.value = Global.shrink # In case shrink is not equal to 1
|
||||
|
||||
for child in shortcuts.get_children():
|
||||
|
|
Loading…
Add table
Reference in a new issue