mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Use append_
instead of parse_
for String
methods.
This commit is contained in:
parent
594d64ec24
commit
ffa6ef220b
62 changed files with 245 additions and 274 deletions
|
@ -1119,7 +1119,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