You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
-Project settings can properly add/remove properties again, fixes #3177
This commit is contained in:
@@ -530,7 +530,7 @@ void ProjectSettings::_item_selected() {
|
||||
return;
|
||||
if (!ti->get_parent())
|
||||
return;
|
||||
category->set_text(ti->get_parent()->get_text(0));
|
||||
category->set_text(globals_editor->get_current_section());
|
||||
property->set_text(ti->get_text(0));
|
||||
popup_platform->set_disabled(false);
|
||||
|
||||
@@ -569,7 +569,8 @@ void ProjectSettings::_item_add() {
|
||||
|
||||
String name = catname+"/"+propname;
|
||||
Globals::get_singleton()->set(name,value);
|
||||
globals_editor->get_property_editor()->update_tree();
|
||||
globals_editor->edit(NULL);
|
||||
globals_editor->edit(Globals::get_singleton());
|
||||
}
|
||||
|
||||
void ProjectSettings::_item_del() {
|
||||
|
||||
Reference in New Issue
Block a user