Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ class PlaceFootprints(pcbnew.ActionPlugin):
def defaults(self):
self.name = "Place Footprints"
self.category = "Place Footprints"
self.description = "Places selected footprints either by reference or by sheet in different configurations (linear, circular, matrix)"
self.description = "place selected footprints or footprints from multiple sheets " \
"in linear, circular or matrix arrangement"
self.icon_file_name = os.path.join(os.path.dirname(__file__), 'place_footprints_light.png')
self.dark_icon_file_name = os.path.join(os.path.dirname(__file__), 'place_footprints_dark.png')
self.show_toolbar_button = True

def Run(self):
caption = self.name
Expand Down
8 changes: 4 additions & 4 deletions action_place_footprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,10 +355,10 @@ def __init__(self):
self.category = "Place Footprints"
self.description = "place selected footprints or footprints from multiple sheets " \
"in linear, circular or matrix arrangement"
self.icon_file_name = os.path.join(
os.path.dirname(__file__), 'place_footprints_light.png')
self.dark_icon_file_name = os.path.join(
os.path.dirname(__file__), 'place_footprints_dark.png')

self.icon_file_name = os.path.join(os.path.dirname(__file__), 'place_footprints_light.png')
self.dark_icon_file_name = os.path.join(os.path.dirname(__file__), 'place_footprints_dark.png')
self.show_toolbar_button = True

self.debug_level = logging.INFO

Expand Down