diff --git a/UI/qt-wrappers.cpp b/UI/qt-wrappers.cpp index 4a89dc8fc..030ecbeae 100644 --- a/UI/qt-wrappers.cpp +++ b/UI/qt-wrappers.cpp @@ -412,6 +412,10 @@ void RefreshToolBarStyling(QToolBar *toolBar) { for (QAction *action : toolBar->actions()) { QWidget *widget = toolBar->widgetForAction(action); + + if (!widget) + continue; + widget->style()->unpolish(widget); widget->style()->polish(widget); } diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index f8fe21d1a..2a417017c 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -587,6 +587,9 @@ void OBSBasic::copyActionsDynamicProperties() for (QAction *x : ui->scenesToolbar->actions()) { QWidget *temp = ui->scenesToolbar->widgetForAction(x); + if (!temp) + continue; + for (QByteArray &y : x->dynamicPropertyNames()) { temp->setProperty(y, x->property(y)); } @@ -595,6 +598,9 @@ void OBSBasic::copyActionsDynamicProperties() for (QAction *x : ui->sourcesToolbar->actions()) { QWidget *temp = ui->sourcesToolbar->widgetForAction(x); + if (!temp) + continue; + for (QByteArray &y : x->dynamicPropertyNames()) { temp->setProperty(y, x->property(y)); } @@ -603,6 +609,9 @@ void OBSBasic::copyActionsDynamicProperties() for (QAction *x : ui->mixerToolbar->actions()) { QWidget *temp = ui->mixerToolbar->widgetForAction(x); + if (!temp) + continue; + for (QByteArray &y : x->dynamicPropertyNames()) { temp->setProperty(y, x->property(y)); }