make sure we use the same naming scheme for the commands everywhere

This commit is contained in:
jan 2025-04-10 22:10:02 -07:00
parent f455ddb314
commit 41a0e4da6a
2 changed files with 8 additions and 7 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<klayout-macro>
<description>add "Change Layer of Selection" to layer context menu</description>
<description>add "Change Layer of Objects" to layer context menu</description>
<version/>
<category>pymacros</category>
<prolog/>
@ -33,5 +33,6 @@ new_action.title = 'Change Layer of Objects'
new_action.on_triggered = change_layer_action.trigger
menu.insert_separator('@lcp_context_menu.end', 'tb_separator')
menu.insert_item('@lcp_context_menu.end', 'change_layer', new_action)</text>
menu.insert_item('@lcp_context_menu.end', 'change_layer', new_action)
</text>
</klayout-macro>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<klayout-macro>
<description>add "Set All Valid" to layer context menu</description>
<description>add "Make All Valid" to layer context menu</description>
<version/>
<category>pymacros</category>
<prolog/>
@ -16,12 +16,12 @@
<interpreter>python</interpreter>
<dsl-interpreter-name/>
<text>"""
Add "Change Layer of Objects" to Layer context menu
Add "Make All Valid" to Layer context menu
"""
import pya
def set_all_valid():
def make_all_valid():
view = pya.LayoutView.current()
for layer in view.each_layer():
layer.valid = True
@ -31,8 +31,8 @@ mw = pya.Application.instance().main_window()
menu = mw.menu()
new_action = pya.Action()
new_action.title = 'Set All Valid'
new_action.on_triggered = set_all_valid
new_action.title = 'Make All Valid'
new_action.on_triggered = make_all_valid
menu.insert_item('@lcp_context_menu.rename', 'make_all_valid', new_action)
</text>