diff options
Diffstat (limited to 'src/gui/spellpopup.cpp')
-rw-r--r-- | src/gui/spellpopup.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/spellpopup.cpp b/src/gui/spellpopup.cpp index e3fddc18a..0732c9c02 100644 --- a/src/gui/spellpopup.cpp +++ b/src/gui/spellpopup.cpp @@ -42,8 +42,10 @@ SpellPopup::SpellPopup(): mItemComment(new Label(this)) { mItemName->setFont(boldFont); - mItemName->setForegroundColor(getThemeColor(Theme::POPUP)); - mItemComment->setForegroundColor(getThemeColor(Theme::POPUP)); + mItemName->setForegroundColorAll(getThemeColor(Theme::POPUP), + getThemeColor(Theme::POPUP_OUTLINE)); + mItemComment->setForegroundColorAll(getThemeColor(Theme::POPUP), + getThemeColor(Theme::POPUP_OUTLINE)); add(mItemName); add(mItemComment); |