diff options
author | Thakee Nathees <thakeenathees@gmail.com> | 2020-05-07 05:56:29 +0530 |
---|---|---|
committer | Thakee Nathees <thakeenathees@gmail.com> | 2020-05-07 05:56:29 +0530 |
commit | 5640cad1e1df4634d204e8a16ddf7c4ba34b22d0 (patch) | |
tree | 23aae965ab71fd7b19adcbb9e582a03866e22612 | |
parent | f7ca1c805ba2189627b49212ffbfba773f44acc5 (diff) |
Fix: printing empty string does nothing in editor output pannel
Fix: #38490
-rw-r--r-- | core/debugger/remote_debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/debugger/remote_debugger.cpp b/core/debugger/remote_debugger.cpp index fd109c62b6..95babc1784 100644 --- a/core/debugger/remote_debugger.cpp +++ b/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; 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; if (allowed_chars < s.length()) { |