提交 e8a1c082 编写于 作者: J jp9000

Revert "UI: Add ability for stingers to use filters"

This reverts commit 36ab7b97.

The fact that a transition is a composition of two scenes was not
factored into the merging of this PR. Thus, it would apply to the
underlying scenes when transitioning, making the effectiveness of this
feature cause inconsistent rendering of the underlying scenes when
transitions are activated versus when they're not.
上级 36ab7b97
......@@ -657,7 +657,6 @@ void OBSBasic::on_transitionProps_clicked()
return;
auto properties = [&]() { CreatePropertiesWindow(source); };
auto filters = [&]() { CreateFiltersWindow(source); };
QMenu menu(this);
......@@ -675,13 +674,6 @@ void OBSBasic::on_transitionProps_clicked()
connect(action, &QAction::triggered, properties);
menu.addAction(action);
if (strcmp(obs_source_get_unversioned_id(source),
"obs_stinger_transition") == 0) {
action = new QAction(QTStr("Filters"), &menu);
connect(action, &QAction::triggered, filters);
menu.addAction(action);
}
menu.exec(QCursor::pos());
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册