Fixed formatting
All checks were successful
linting & formatting / build (push) Successful in 25s

This commit is contained in:
Rob Kelly 2025-08-16 15:42:53 -06:00
parent 46d000915d
commit e440b3124f

View File

@ -30,7 +30,8 @@ func _ready() -> void:
# Set action label text
var loc_action := tr(ACTION_KEY_FMT.format([key]))
# Fall back to just the key if no localization exists
@warning_ignore("incompatible_ternary") action.text = loc_action if loc_action else key
@warning_ignore("incompatible_ternary")
action.text = loc_action if loc_action else key
# Set the binding label
_set_label_from_binding()