From 760095e28d7ff1f6cce2f0c2458978f725264320 Mon Sep 17 00:00:00 2001 From: Rasmus Vermeulen Date: Tue, 17 Mar 2020 22:47:20 +0100 Subject: [PATCH] Clarify the Viewport size warning message --- scene/main/viewport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/main/viewport.cpp b/scene/main/viewport.cpp index dbb0e8215ae..8ef3bdd04ec 100644 --- a/scene/main/viewport.cpp +++ b/scene/main/viewport.cpp @@ -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(); }