small refinements

This commit is contained in:
easyw
2017-05-19 13:11:32 +02:00
parent 2f047dd2d9
commit c5bda5a96d
3 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ A script to export technical layers of kicad PCB to DXF
DXF generated file has single line draw as it should be for mechanical interchange (this option is missing in pcbnew plot) DXF generated file has single line draw as it should be for mechanical interchange (this option is missing in pcbnew plot)
- ### action_menu_move_to_layer - ### action_menu_move_to_layer
A script to Move Selected Drawing(s) to choosen new Layer (available only in GAL) A script to Move Selected Drawing(s) to chosen new Layer (available only in GAL)
--- ---
## action_menu_annular_check.py ## action_menu_annular_check.py
@ -64,12 +64,12 @@ done:
--- ---
## action_menu_move_to_layer ## action_menu_move_to_layer
A script to Move Selected Drawing(s) to choosen new Layer (available only in GAL) A script to Move Selected Drawing(s) to chosen new Layer (available only in GAL)
requirements: KiCAD pcbnew > 4.0 built with KICAD_SCRIPTING_ACTION_MENU option activated requirements: KiCAD pcbnew > 4.0 built with KICAD_SCRIPTING_ACTION_MENU option activated
release "1.1.0" release "1.1.0"
A script to Move Selected Drawing(s) to choosen new Layer (available only in GAL) A script to Move Selected Drawing(s) to chosen new Layer (available only in GAL)
How to use: How to use:
- move to GAL - move to GAL
- select some draw objects - select some draw objects
@ -77,5 +77,5 @@ release "1.1.0"
- select the new layer - select the new layer
- selected draw objects will be moved to new layer - selected draw objects will be moved to new layer
Launch the 'Move Selected drawings to choosen Layer' script in pcbnew from Tools menu Launch the 'Move Selected drawings to chosen Layer' script in pcbnew from Tools menu
![Move Selected drawings to choosen Layer](screenshots/move_to_layer.png) ![Move Selected drawings to chosen Layer](screenshots/move_to_layer.png)

View File

@ -29,7 +29,7 @@ ___version___="1.1.0"
class move_to_draw_layer( pcbnew.ActionPlugin ): class move_to_draw_layer( pcbnew.ActionPlugin ):
""" """
A script to Move Selected Drawing(s) to choosen new Layer (available only in GAL) A script to Move Selected Drawing(s) to chosen new Layer (available only in GAL)
How to use: How to use:
- move to GAL - move to GAL
- select some draw objects - select some draw objects
@ -46,9 +46,9 @@ class move_to_draw_layer( pcbnew.ActionPlugin ):
self.description should be a comprehensive description self.description should be a comprehensive description
of the plugin of the plugin
""" """
self.name = "Move Selected drawings to choosen Layer" self.name = "Move Selected drawings to chosen Layer"
self.category = "Modify Drawing PCB" self.category = "Modify Drawing PCB"
self.description = "Move Selected drawings to choosen Layer on an existing PCB" self.description = "Move Selected drawings to chosen Layer on an existing PCB"
def Run( self ): def Run( self ):
found_selected=False found_selected=False

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 90 KiB