Procházet zdrojové kódy

Fix: printing empty string does nothing in editor output pannel

Fix: #38490
Thakee Nathees před 5 roky
rodič
revize
5640cad1e1
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      core/debugger/remote_debugger.cpp

+ 1 - 1
core/debugger/remote_debugger.cpp

@@ -466,7 +466,7 @@ void RemoteDebugger::_print_handler(void *p_this, const String &p_string, bool p
 	String s = p_string;
 	String s = p_string;
 	int allowed_chars = MIN(MAX(rd->max_chars_per_second - rd->char_count, 0), s.length());
 	int allowed_chars = MIN(MAX(rd->max_chars_per_second - rd->char_count, 0), s.length());
 
 
-	if (allowed_chars == 0)
+	if (allowed_chars == 0 && s.length() > 0)
 		return;
 		return;
 
 
 	if (allowed_chars < s.length()) {
 	if (allowed_chars < s.length()) {