mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 18:11:13 +00:00
Merge pull request #104556 from Ivorforce/string-extend-instead-of-parse
Use `append_` instead of `parse_` for `String` methods.
This commit is contained in:
commit
780cf03051
62 changed files with 245 additions and 274 deletions
|
|
@ -1121,7 +1121,7 @@ void RenderingDeviceGraph::_run_label_command_change(RDD::CommandBufferID p_comm
|
|||
Color label_color;
|
||||
if (p_new_label_index >= 0) {
|
||||
const char *label_chars = &command_label_chars[command_label_offsets[p_new_label_index]];
|
||||
label_name.parse_utf8(label_chars);
|
||||
label_name.append_utf8(label_chars);
|
||||
label_color = command_label_colors[p_new_label_index];
|
||||
} else if (p_use_label_for_empty) {
|
||||
label_name = "Command graph";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue