diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-07-23 18:43:03 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-07-23 18:43:17 (GMT) |
commit | 649b6f713a48e1b65b3032e15326269d7fec3d27 (patch) | |
tree | 0492c6bff12340e49a313db21ea0b5225dc016bc /Swift/QtUI | |
parent | 72c2e69c3126c5baeaf983d74c2a18a0b07a409f (diff) | |
download | swift-contrib-649b6f713a48e1b65b3032e15326269d7fec3d27.zip swift-contrib-649b6f713a48e1b65b3032e15326269d7fec3d27.tar.bz2 |
Tone down the chat state colours in tab titles.
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/QtChatTabs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtChatTabs.cpp b/Swift/QtUI/QtChatTabs.cpp index b1080ea..138e815 100644 --- a/Swift/QtUI/QtChatTabs.cpp +++ b/Swift/QtUI/QtChatTabs.cpp @@ -144,8 +144,8 @@ void QtChatTabs::handleTabTitleUpdated(QWidget* widget) { QColor tabTextColor; bool flash = false; switch (tabbable->getWidgetAlertState()) { - case QtTabbable::WaitingActivity : flash = true; tabTextColor = QColor(255, 0, 0); break; - case QtTabbable::ImpendingActivity : tabTextColor = QColor(0, 255, 0); break; + case QtTabbable::WaitingActivity : flash = true; tabTextColor = QColor(217, 20, 43); break; + case QtTabbable::ImpendingActivity : tabTextColor = QColor(27, 171, 32); break; default : tabTextColor = QColor(); } tabs_->tabBar()->setTabTextColor(index, tabTextColor); |