Renamed RTL remove_line() to remove_paragraph().

This commit is contained in:
Koyper
2022-12-21 11:54:18 -06:00
parent 63f95c0e58
commit e846b22da6
4 changed files with 13 additions and 13 deletions

View File

@@ -286,7 +286,7 @@ void EditorLog::_add_log_line(LogMessage &p_message, bool p_replace_previous) {
// Remove last line if replacing, as it will be replace by the next added line.
// Why "- 2"? RichTextLabel is weird. When you add a line with add_newline(), it also adds an element to the list of lines which is null/blank,
// but it still counts as a line. So if you remove the last line (count - 1) you are actually removing nothing...
log->remove_line(log->get_paragraph_count() - 2);
log->remove_paragraph(log->get_paragraph_count() - 2);
}
switch (p_message.type) {