ulikoehler / KiCADBulkHideSilkscreenDesignators

KiCAD pcbnew plugin to hide silkscreen reference designators such as "R4" from one or multiple footprints using a single click
Creative Commons Zero v1.0 Universal
4 stars 2 forks source link

Feature request: act as toggle #3

Open 0xDP opened 1 year ago

0xDP commented 1 year ago

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)
flexifi commented 2 months ago

yes i hope they update the features like this