mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
ProjectSettings: Disallow adding properties without name.
This commit is contained in:
@@ -750,7 +750,16 @@ void ProjectSettingsEditor::_item_add() {
|
||||
|
||||
String catname = category->get_text().strip_edges();
|
||||
String propname = property->get_text().strip_edges();
|
||||
String name = catname != "" ? catname + "/" + propname : propname;
|
||||
|
||||
if (propname.empty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (catname.empty()) {
|
||||
catname = "global";
|
||||
}
|
||||
|
||||
String name = catname + "/" + propname;
|
||||
|
||||
undo_redo->create_action(TTR("Add Global Property"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user