Logs: Fix trailing space, nbsp and unintended character

This commit is contained in:
Eladash 2023-06-06 03:57:58 +03:00 committed by Megamouse
parent 16579e0b1f
commit 636bde6343
3 changed files with 4 additions and 4 deletions

View file

@ -1016,7 +1016,7 @@ void kernel_explorer::log(u32 level, QTreeWidgetItem* item)
for (u32 j = 0; j < level; j++)
{
m_log_buf += QChar::Nbsp;
m_log_buf += QChar::Space;
}
m_log_buf.append(item->text(0));