Skip to content

Commit

Permalink
Move Source filter show all move filters in simultaneous and next move
Browse files Browse the repository at this point in the history
  • Loading branch information
exeldro committed Oct 3, 2022
1 parent 08bb1bb commit 5ce4e4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ else()
cmake_minimum_required(VERSION 3.18)
endif()

project(move-transition VERSION 2.6.3)
project(move-transition VERSION 2.6.4)
set(PROJECT_FULL_NAME "Move Transition")

# Set new UUIDs when you start to create a new plugin.
Expand Down
2 changes: 1 addition & 1 deletion buildspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@
}
},
"name": "move-transition",
"version": "2.6.3"
"version": "2.6.4"
}
7 changes: 1 addition & 6 deletions move-source-filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -980,12 +980,7 @@ void prop_list_add_move_source_filter(obs_source_t *parent, obs_source_t *child,
void *data)
{
UNUSED_PARAMETER(parent);
if (strcmp(obs_source_get_unversioned_id(child),
MOVE_SOURCE_FILTER_ID) != 0 &&
strcmp(obs_source_get_unversioned_id(child),
MOVE_VALUE_FILTER_ID) != 0 &&
strcmp(obs_source_get_unversioned_id(child),
MOVE_AUDIO_VALUE_FILTER_ID) != 0)
if (!is_move_filter(obs_source_get_unversioned_id(child)))
return;
obs_property_t *p = data;
const char *name = obs_source_get_name(child);
Expand Down

0 comments on commit 5ce4e4f

Please sign in to comment.