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:
Ed Maste
2021-05-23 03:34:39 -07:00
committed by Jim
parent 8cf28ceafd
commit 8dd612e37f
+1 -1
View File
@@ -1229,7 +1229,7 @@ void OBSBasicFilters::delete_filter(OBSSource filter)
std::string redo_data(obs_data_get_json(rwrapper));
main->undo_s.add_action(
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_data_release(wrapper);