Browse Source

Don't autofill background color on macOS

PR #17669.
adaptive-webui-19844
Tyler Dunn 2 years ago committed by GitHub
parent
commit
987e1b544a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/gui/properties/propertieswidget.cpp

2
src/gui/properties/propertieswidget.cpp

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

Loading…
Cancel
Save