summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer Burris <sburris@posteo.net>2020-08-28 15:57:33 -0700
committerSpencer Burris <sburris@posteo.net>2020-08-28 15:57:33 -0700
commit0e3d938968d05475861a01675c71701b6eff2b13 (patch)
tree9c63cba52d036df34b5d1a715aba612b501c30ee
parent5abb53be689475cf368b1d032bd3aecbe0f18051 (diff)
Make blank project name create an error, not a warning
-rw-r--r--editor/project_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp
index 1a02390a6d..2fa0031a40 100644
--- a/editor/project_manager.cpp
+++ b/editor/project_manager.cpp
@@ -412,7 +412,7 @@ private:
_test_path();
if (p_text == "") {
- set_message(TTR("It would be a good idea to name your project."), MESSAGE_WARNING);
+ set_message(TTR("It would be a good idea to name your project."), MESSAGE_ERROR);
}
}