forked from qt-creator/qt-creator
macOS: Fix vanishing controls in Welcome mode with macOS dark mode
The example set selector and the search input field were missing some palette tweaks that were done by other classes deriving from WelcomePageFrame. Fixes: QTCREATORBUG-25405 Change-Id: I43a022aa5464a1167f94d26e945de225a436b768 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -57,15 +57,17 @@ static QFont sizedFont(int size, const QWidget *widget)
|
||||
SearchBox::SearchBox(QWidget *parent)
|
||||
: WelcomePageFrame(parent)
|
||||
{
|
||||
QPalette pal;
|
||||
QPalette pal = buttonPalette(false, false, true);
|
||||
pal.setColor(QPalette::Base, themeColor(Theme::Welcome_BackgroundColor));
|
||||
// for macOS dark mode
|
||||
pal.setColor(QPalette::Text, themeColor(Theme::Welcome_TextColor));
|
||||
setPalette(pal);
|
||||
|
||||
m_lineEdit = new FancyLineEdit;
|
||||
m_lineEdit->setFiltering(true);
|
||||
m_lineEdit->setFrame(false);
|
||||
m_lineEdit->setFont(sizedFont(14, this));
|
||||
m_lineEdit->setAttribute(Qt::WA_MacShowFocusRect, false);
|
||||
m_lineEdit->setPalette(pal);
|
||||
|
||||
auto box = new QHBoxLayout(this);
|
||||
box->setContentsMargins(10, 3, 3, 3);
|
||||
|
||||
Reference in New Issue
Block a user