From 28828435bbe56d959e0dc14938df6a32169fad91 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sun, 17 Jul 2022 19:41:54 -0700 Subject: [PATCH] Qt/LogWidget: remove extra space --- Source/Core/DolphinQt/Config/LogWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(line)); m_log_text->appendHtml( - QStringLiteral("%1 %3") + QStringLiteral("%1%3") .arg(QStringFromStringView(str_view.substr(0, TIMESTAMP_LENGTH)), QString::fromUtf8(color), QStringFromStringView(str_view.substr(TIMESTAMP_LENGTH)).toHtmlEscaped()));