Nice plugin! It would be great if it would work as a toggle. Then one could hide the silkscreen designators and show them again if needed. I mean instead of this:
# Hide reference
reference = selected_footprint.Reference()
if reference:
reference.SetVisible(False)
something like this (pseudocode):
# Toggle reference visibility
reference = selected_footprint.Reference()
if reference:
if reference.isVisible():
reference.SetVisible(False)
else:
reference.SetVisible(True)
Nice plugin! It would be great if it would work as a toggle. Then one could hide the silkscreen designators and show them again if needed. I mean instead of this:
something like this (pseudocode):