summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-05-24 14:50:27 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2019-05-27 08:41:42 +0000
commita9d6de5702f8e21b9234945f78aa60264427150f (patch)
treef2a08bcca85796756c2a76fa8295eb7c9c6aa1a3 /src/plugins/coreplugin
parenta1dab694bb14494d3a9e5757353e8fdc59d84d50 (diff)
downloadqt-creator-a9d6de5702f8e21b9234945f78aa60264427150f.tar.gz
Core: Fix typo in OutputWindow
Change-Id: I61d091f24bb75412563085b777fb6661ef255c38 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/coreplugin')
-rw-r--r--src/plugins/coreplugin/outputwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/coreplugin/outputwindow.cpp b/src/plugins/coreplugin/outputwindow.cpp
index 4502948644..f0acec9d6b 100644
--- a/src/plugins/coreplugin/outputwindow.cpp
+++ b/src/plugins/coreplugin/outputwindow.cpp
@@ -302,8 +302,8 @@ void OutputWindow::setFilterText(const QString &filterText)
QPalette pal;
pal.setColor(QPalette::Active, QPalette::Base, d->m_highlightBgColor);
pal.setColor(QPalette::Inactive, QPalette::Base, d->m_highlightBgColor.darker(120));
- pal.setColor(QPalette::Active, QPalette::Text, d->m_highlightBgColor);
- pal.setColor(QPalette::Inactive, QPalette::Text, d->m_highlightBgColor.darker(120));
+ pal.setColor(QPalette::Active, QPalette::Text, d->m_highlightTextColor);
+ pal.setColor(QPalette::Inactive, QPalette::Text, d->m_highlightTextColor.darker(120));
setPalette(pal);
}