diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-07-04 14:09:28 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-07-04 14:09:28 +0300 |
commit | 0e8cb304a506ee3549ea8f3b7103b35a890b1ca1 (patch) | |
tree | 41fc80486b950817ea119ed41a4050b8dd58c5a7 /core/string/print_string.cpp | |
parent | cdd2313ba27d0a2600a18e849b4c5d1fd6a6e351 (diff) | |
download | redot-engine-0e8cb304a506ee3549ea8f3b7103b35a890b1ca1.tar.gz |
[Terminal Output] Reset text properties after `print_rich`.
Diffstat (limited to 'core/string/print_string.cpp')
-rw-r--r-- | core/string/print_string.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/string/print_string.cpp b/core/string/print_string.cpp index 7b90710308..dcdde3c175 100644 --- a/core/string/print_string.cpp +++ b/core/string/print_string.cpp @@ -164,6 +164,8 @@ void __print_line_rich(String p_string) { p_string_ansi = p_string_ansi.replace("[/fgcolor]", "\u001b[39;49m"); } + p_string_ansi += "\u001b[0m"; // Reset. + OS::get_singleton()->print_rich("%s\n", p_string_ansi.utf8().get_data()); _global_lock(); |