Clarify the Viewport size warning message

This commit is contained in:
Rasmus Vermeulen 2020-03-17 22:47:20 +01:00
parent 855f4dc193
commit 760095e28d
1 changed files with 1 additions and 1 deletions

View File

@ -2954,7 +2954,7 @@ String Viewport::get_configuration_warning() const {
}*/
if (size.x == 0 || size.y == 0) {
return TTR("This viewport can't render anything.\nConsider increasing the size.");
return TTR("Viewport size must be greater than 0 to render anything.");
}
return String();
}