Compare commits

...

2 Commits
v1.1 ... master

Author SHA1 Message Date
jan
e3d748df86 bump version to v1.2 2025-04-15 17:58:23 -07:00
jan
108e8e7ea0 Fix shortcut for set_all_valid 2025-04-15 17:57:43 -07:00
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<name>layers_context_toolbox</name>
<token/>
<hidden>false</hidden>
<version>1.1</version>
<version>1.2</version>
<api-version/>
<title>Layers context toolbox</title>
<doc>Adds items to the "Layers" pane context menu: "Change Layer of Objects", "Make All Valid"</doc>

View File

@ -9,7 +9,7 @@
<autorun>true</autorun>
<autorun-early>false</autorun-early>
<priority>3</priority>
<shortcut>Ctrl+Shift+V</shortcut>
<shortcut/>
<show-in-menu>false</show-in-menu>
<group-name/>
<menu-path>@lcp_context_menu.end</menu-path>
@ -33,6 +33,7 @@ menu = mw.menu()
new_action = pya.Action()
new_action.title = 'Make All Valid'
new_action.on_triggered = make_all_valid
new_action.default_shortcut = 'Ctrl+Shift+V'
menu.insert_item('@lcp_context_menu.rename', 'make_all_valid', new_action)
</text>