mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Replace some problematic uses of String::num
to String::num_int64
This commit is contained in:
parent
4ce466d7fa
commit
33e16435f5
10 changed files with 12 additions and 12 deletions
|
@ -1075,7 +1075,7 @@ void TextShaderEditor::_update_bookmark_list() {
|
|||
line = line.substr(0, 50);
|
||||
}
|
||||
|
||||
bookmarks_menu->add_item(String::num((int)bookmark_list[i] + 1) + " - \"" + line + "\"");
|
||||
bookmarks_menu->add_item(String::num_int64(bookmark_list[i] + 1) + " - \"" + line + "\"");
|
||||
bookmarks_menu->set_item_metadata(-1, bookmark_list[i]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue