UI: Correct add_action repeatable arg type
FreeBSD build fix. repeatable is a bool, so pass false instead of NULL.
This commit is contained in:
parent
8cf28ceafd
commit
8dd612e37f
@ -1229,7 +1229,7 @@ void OBSBasicFilters::delete_filter(OBSSource filter)
|
|||||||
std::string redo_data(obs_data_get_json(rwrapper));
|
std::string redo_data(obs_data_get_json(rwrapper));
|
||||||
main->undo_s.add_action(
|
main->undo_s.add_action(
|
||||||
QTStr("Undo.Delete").arg(obs_source_get_name(filter)), undo,
|
QTStr("Undo.Delete").arg(obs_source_get_name(filter)), undo,
|
||||||
redo, undo_data, redo_data, NULL);
|
redo, undo_data, redo_data, false);
|
||||||
obs_source_filter_remove(source, filter);
|
obs_source_filter_remove(source, filter);
|
||||||
|
|
||||||
obs_data_release(wrapper);
|
obs_data_release(wrapper);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user