Compare commits

..

No commits in common. "master" and "v1.1" have entirely different histories.
master ... v1.1

2 changed files with 2 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<name>layers_context_toolbox</name>
<token/>
<hidden>false</hidden>
<version>1.2</version>
<version>1.1</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/>
<shortcut>Ctrl+Shift+V</shortcut>
<show-in-menu>false</show-in-menu>
<group-name/>
<menu-path>@lcp_context_menu.end</menu-path>
@ -33,7 +33,6 @@ 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>