lattice & UV 'select all' menu items were missing action assignment.
This commit is contained in:
@@ -985,8 +985,7 @@ class CLIP_MT_select(Menu):
|
||||
|
||||
layout.separator()
|
||||
|
||||
props = layout.operator("clip.select_all")
|
||||
props.action = 'TOGGLE'
|
||||
layout.operator("clip.select_all").action = 'TOGGLE'
|
||||
layout.operator("clip.select_all", text="Inverse").action = 'INVERT'
|
||||
|
||||
layout.menu("CLIP_MT_select_grouped")
|
||||
|
||||
@@ -97,7 +97,7 @@ class IMAGE_MT_select(Menu):
|
||||
|
||||
layout.separator()
|
||||
|
||||
layout.operator("uv.select_all")
|
||||
layout.operator("uv.select_all").action = 'TOGGLE'
|
||||
layout.operator("uv.select_all", text="Inverse").action = 'INVERT'
|
||||
layout.operator("uv.unlink_selected")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user