DolphinQt/LogWidget: Restore log window colors.

This commit is contained in:
Admiral H. Curtiss 2023-08-16 19:55:18 +02:00
parent 23ae8c439c
commit a9cba9be36
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB
1 changed files with 2 additions and 4 deletions

View File

@ -152,10 +152,8 @@ void LogWidget::CreateWidgets()
m_log_text->setUndoRedoEnabled(false); m_log_text->setUndoRedoEnabled(false);
m_log_text->setMaximumBlockCount(MAX_LOG_LINES); m_log_text->setMaximumBlockCount(MAX_LOG_LINES);
QPalette palette = m_log_text->palette(); m_log_text->setStyleSheet(
palette.setColor(QPalette::Base, Qt::black); QStringLiteral("QPlainTextEdit { background-color: black; color: white; }"));
palette.setColor(QPalette::Text, Qt::white);
m_log_text->setPalette(palette);
} }
void LogWidget::ConnectWidgets() void LogWidget::ConnectWidgets()