Don't autofill background color on macOS

PR #17669.
This commit is contained in:
Tyler Dunn
2022-09-05 21:44:18 -04:00
committed by GitHub
parent 5cf6b1cbde
commit 987e1b544a

View File

@@ -76,7 +76,9 @@ PropertiesWidget::PropertiesWidget(QWidget *parent)
, m_ui(new Ui::PropertiesWidget()) , m_ui(new Ui::PropertiesWidget())
{ {
m_ui->setupUi(this); m_ui->setupUi(this);
#ifndef Q_OS_MACOS
setAutoFillBackground(true); setAutoFillBackground(true);
#endif
m_state = VISIBLE; m_state = VISIBLE;