mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Qt/LogWidget: remove extra space
This commit is contained in:
@ -102,7 +102,7 @@ void LogWidget::UpdateLog()
|
|||||||
const std::string_view str_view(std::get<std::string>(line));
|
const std::string_view str_view(std::get<std::string>(line));
|
||||||
|
|
||||||
m_log_text->appendHtml(
|
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)),
|
.arg(QStringFromStringView(str_view.substr(0, TIMESTAMP_LENGTH)),
|
||||||
QString::fromUtf8(color),
|
QString::fromUtf8(color),
|
||||||
QStringFromStringView(str_view.substr(TIMESTAMP_LENGTH)).toHtmlEscaped()));
|
QStringFromStringView(str_view.substr(TIMESTAMP_LENGTH)).toHtmlEscaped()));
|
||||||
|
Reference in New Issue
Block a user