Use StringName literals with Input methods

This commit is contained in:
Aaron Franke
2022-03-27 19:19:09 -05:00
parent ab0816a44e
commit cb52878006
37 changed files with 126 additions and 126 deletions

View File

@@ -51,7 +51,7 @@ func _add_placeholder_key(container):
var placeholder = Control.new()
placeholder.size_flags_horizontal = SIZE_EXPAND_FILL
placeholder.mouse_filter = Control.MOUSE_FILTER_IGNORE
placeholder.name = "Placeholder"
placeholder.name = &"Placeholder"
container.add_child(placeholder)