diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-08-10 09:48:53 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-08-10 09:48:53 +0300 |
commit | 9a6ecda591970fc7292336c1af9ab73088d27e87 (patch) | |
tree | 49b01c5234f72e4c591e7b1d443dba9a195a95f9 /editor/editor_log.h | |
parent | 013e8e3afb982d4b230f0039b6dc248b48794ab9 (diff) | |
download | redot-engine-9a6ecda591970fc7292336c1af9ab73088d27e87.tar.gz |
[Editor Log] Clear rich print tags only after the last line.
Diffstat (limited to 'editor/editor_log.h')
-rw-r--r-- | editor/editor_log.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/editor/editor_log.h b/editor/editor_log.h index b875066afa..07f3a25c3e 100644 --- a/editor/editor_log.h +++ b/editor/editor_log.h @@ -60,12 +60,14 @@ private: String text; MessageType type; int count = 1; + bool clear = true; LogMessage() {} - LogMessage(const String p_text, MessageType p_type) : + LogMessage(const String p_text, MessageType p_type, bool p_clear) : text(p_text), - type(p_type) { + type(p_type), + clear(p_clear) { } }; @@ -166,7 +168,7 @@ private: void _set_search_visible(bool p_visible); void _search_changed(const String &p_text); - void _process_message(const String &p_msg, MessageType p_type); + void _process_message(const String &p_msg, MessageType p_type, bool p_clear); void _reset_message_counts(); void _set_collapse(bool p_collapse); |