ProjectSettings: Disallow adding properties without name.

This commit is contained in:
Andreas Haas 2018-01-30 20:00:42 +01:00
parent 20a52aa39d
commit d664d6e634
No known key found for this signature in database
GPG Key ID: B5FFAE1B65FBD2E1
1 changed files with 10 additions and 1 deletions

View File

@ -750,7 +750,16 @@ void ProjectSettingsEditor::_item_add() {
String catname = category->get_text().strip_edges(); String catname = category->get_text().strip_edges();
String propname = property->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")); undo_redo->create_action(TTR("Add Global Property"));