summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Config/LogWidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DolphinQt/Config/LogWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Config/LogWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Config/LogWidget.cpp b/Source/Core/DolphinQt/Config/LogWidget.cpp
index bcb0db6d2c..4e92b2725e 100644
--- a/Source/Core/DolphinQt/Config/LogWidget.cpp
+++ b/Source/Core/DolphinQt/Config/LogWidget.cpp
@@ -102,7 +102,7 @@ void LogWidget::UpdateLog()
const std::string_view str_view(std::get<std::string>(line));
m_log_text->appendHtml(
- QStringLiteral("%1 <span style=\"color: %2; white-space: pre\">%3</span>")
+ QStringLiteral("%1<span style=\"color: %2; white-space: pre\">%3</span>")
.arg(QStringFromStringView(str_view.substr(0, TIMESTAMP_LENGTH)),
QString::fromUtf8(color),
QStringFromStringView(str_view.substr(TIMESTAMP_LENGTH)).toHtmlEscaped()));