mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Merge pull request #12116 from AdmiralCurtiss/log-colors
DolphinQt/LogWidget: Restore log window colors.
This commit is contained in:
@ -152,10 +152,8 @@ void LogWidget::CreateWidgets()
|
||||
m_log_text->setUndoRedoEnabled(false);
|
||||
m_log_text->setMaximumBlockCount(MAX_LOG_LINES);
|
||||
|
||||
QPalette palette = m_log_text->palette();
|
||||
palette.setColor(QPalette::Base, Qt::black);
|
||||
palette.setColor(QPalette::Text, Qt::white);
|
||||
m_log_text->setPalette(palette);
|
||||
m_log_text->setStyleSheet(
|
||||
QStringLiteral("QPlainTextEdit { background-color: black; color: white; }"));
|
||||
}
|
||||
|
||||
void LogWidget::ConnectWidgets()
|
||||
|
Reference in New Issue
Block a user