1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-03 19:11:41 +00:00

Use get_slicec instead of get_slice for single character splitters

This commit is contained in:
A Thousand Ships
2024-11-16 17:16:07 +01:00
parent b5bdb88062
commit 466590d0ec
58 changed files with 210 additions and 210 deletions

View File

@@ -139,7 +139,7 @@ void ProjectSettingsEditor::_add_setting() {
undo_redo->add_undo_method(this, "queue_save");
undo_redo->commit_action();
general_settings_inspector->set_current_section(setting.get_slice("/", 1));
general_settings_inspector->set_current_section(setting.get_slicec('/', 1));
add_button->release_focus();
}