diff options
Diffstat (limited to 'src/gui/popups/textboxpopup.cpp')
-rw-r--r-- | src/gui/popups/textboxpopup.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/popups/textboxpopup.cpp b/src/gui/popups/textboxpopup.cpp index 7571704f9..52e046cd9 100644 --- a/src/gui/popups/textboxpopup.cpp +++ b/src/gui/popups/textboxpopup.cpp @@ -46,6 +46,9 @@ void TextBoxPopup::postInit() setMinHeight(fontHeight); mTextBox->setEditable(false); mTextBox->setOpaque(Opaque_false); + mTextBox->setForegroundColorAll( + getThemeColor(ThemeColorId::POPUP, 255U), + getThemeColor(ThemeColorId::POPUP_OUTLINE, 255U)); add(mTextBox); addMouseListener(this); } |