mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-04-10 17:50:28 -04:00
UI: Fix invalid check for Remove Multiple Sources dialog result
Fixes #4546
This commit is contained in:
@@ -5524,7 +5524,7 @@ void OBSBasic::on_actionRemoveSource_triggered()
|
||||
remove_items.setWindowTitle(QTStr("ConfirmRemove.Title"));
|
||||
remove_items.exec();
|
||||
|
||||
confirmed = remove_items.clickedButton();
|
||||
confirmed = Yes == remove_items.clickedButton();
|
||||
} else {
|
||||
OBSSceneItem &item = items[0];
|
||||
obs_source_t *source = obs_sceneitem_get_source(item);
|
||||
|
||||
Reference in New Issue
Block a user