Skip to content

Commit

Permalink
UI: Fix obsolete filters showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
jp9000 committed Aug 18, 2020
1 parent 5803504 commit 51462e4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions UI/window-basic-filters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,8 @@ QMenu *OBSBasicFilters::CreateAddFilterPopupMenu(bool async)
continue;
if ((caps & OBS_SOURCE_CAP_DISABLED) != 0)
continue;
if ((caps & OBS_SOURCE_CAP_OBSOLETE) != 0)
continue;

auto it = types.begin();
for (; it != types.end(); ++it) {
Expand Down

0 comments on commit 51462e4

Please sign in to comment.