UI: Fix settings properties view background

In the Yami theme, the background color in the properties view in the
settings dialog would be incorrect.
master
cg2121 2022-08-06 22:28:16 -05:00 committed by Jim
parent 7eb46d50b7
commit 5d803058b4
2 changed files with 6 additions and 0 deletions

View File

@ -234,6 +234,11 @@ OBSBasicSettings QListWidget::item {
padding: 6px;
}
/* Settings properties view */
OBSBasicSettings #PropertiesContainer {
background-color: palette(dark);
}
/* Dock Widget */
OBSDock > QWidget {
background: palette(dark);

View File

@ -116,6 +116,7 @@ void OBSPropertiesView::RefreshProperties()
widget->deleteLater();
widget = new QWidget();
widget->setObjectName("PropertiesContainer");
QFormLayout *layout = new QFormLayout;
layout->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow);