Browse Source

Merge pull request #41589 from sburris0/master

Make blank project name create an error, not a warning
Rémi Verschelde 5 năm trước cách đây
mục cha
commit
71833520da
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      editor/project_manager.cpp

+ 1 - 1
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);
 		}
 	}