Skip to content

Commit

Permalink
Do not allow device 'hidden' property (used locally for filtering vie…
Browse files Browse the repository at this point in the history
…ws) does not propagate to the libmapper graph.
  • Loading branch information
malloch committed May 22, 2024
1 parent 9895745 commit de27729
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions webmapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ def set_dev_properties(props):
publish = props['publish']
del props['publish']

if 'hidden' in props:
del props['hidden']

# set metadata
for key in props:
dev.set_property(key, props[key], publish=pub)
Expand Down

0 comments on commit de27729

Please sign in to comment.