UI: Correct add_action repeatable arg type

FreeBSD build fix.  repeatable is a bool, so pass false instead of NULL.
master
Ed Maste 2021-05-22 21:45:28 -04:00 committed by Jim
parent 8cf28ceafd
commit 8dd612e37f
1 changed files with 1 additions and 1 deletions

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);