You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Use get_slicec instead of get_slice for single character splitters
This commit is contained in:
@@ -83,7 +83,7 @@ void SceneCreateDialog::browse_types() {
|
||||
}
|
||||
|
||||
void SceneCreateDialog::on_type_picked() {
|
||||
other_type_display->set_text(select_node_dialog->get_selected_type().get_slice(" ", 0));
|
||||
other_type_display->set_text(select_node_dialog->get_selected_type().get_slicec(' ', 0));
|
||||
if (node_type_other->is_pressed()) {
|
||||
validation_panel->update();
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user