|
@@ -137,12 +137,12 @@ void ProjectSettingsEditor::_action_edited() {
|
|
if (new_name == old_name)
|
|
if (new_name == old_name)
|
|
return;
|
|
return;
|
|
|
|
|
|
- if (new_name.find("/") != -1 || new_name.find(":") != -1 || new_name == "") {
|
|
|
|
|
|
+ if (new_name.find("/") != -1 || new_name.find(":") != -1 || new_name.find("\"") != -1 || new_name == "") {
|
|
|
|
|
|
ti->set_text(0, old_name);
|
|
ti->set_text(0, old_name);
|
|
add_at = "input/" + old_name;
|
|
add_at = "input/" + old_name;
|
|
|
|
|
|
- message->set_text(TTR("Invalid action (anything goes but '/' or ':')."));
|
|
|
|
|
|
+ message->set_text(TTR("Invalid action (anything goes but '/', ':' or '\"')."));
|
|
message->popup_centered(Size2(300, 100) * EDSCALE);
|
|
message->popup_centered(Size2(300, 100) * EDSCALE);
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -830,9 +830,9 @@ void ProjectSettingsEditor::_action_check(String p_action) {
|
|
action_add->set_disabled(true);
|
|
action_add->set_disabled(true);
|
|
} else {
|
|
} else {
|
|
|
|
|
|
- if (p_action.find("/") != -1 || p_action.find(":") != -1) {
|
|
|
|
|
|
+ if (p_action.find("/") != -1 || p_action.find(":") != -1 || p_action.find("\"") != -1) {
|
|
|
|
|
|
- action_add_error->set_text(TTR("Can't contain '/' or ':'"));
|
|
|
|
|
|
+ action_add_error->set_text(TTR("Can't contain '/', ':' or '\"'"));
|
|
action_add_error->show();
|
|
action_add_error->show();
|
|
action_add->set_disabled(true);
|
|
action_add->set_disabled(true);
|
|
return;
|
|
return;
|