diff --git a/UI/window-extra-browsers.cpp b/UI/window-extra-browsers.cpp index c642da295..f6ff2d583 100644 --- a/UI/window-extra-browsers.cpp +++ b/UI/window-extra-browsers.cpp @@ -550,7 +550,11 @@ void OBSBasic::AddExtraBrowserDock(const QString &title, const QString &url, } QAction *action = AddDockWidget(dock); - action->setChecked(true); + if (firstCreate) { + action->blockSignals(true); + action->setChecked(true); + action->blockSignals(false); + } extraBrowserDocks.push_back(QSharedPointer(dock)); extraBrowserDockActions.push_back(QSharedPointer(action));