Post #1073: , et voila you’re not blocked anymore!
Yep, looks like the command assigned to MMB blocks the UI.
I’ll try to add some feature in Blender 2.8 to fix this issue. Let’s hope the devs will accept it.
panosz:
in #1010 you advised me correctly and it solved my problem. I want to use the same property but for a tag this time.
my current command to enable the tag is
Code:
bpy.ops.pme.pm_enable_by_tag(tag=‘BLENDERView’, enable=True)
and in property last time you advised this
Code:
prefs().pie_menus[“Physics_Panel Physics”].enabled
I tried all kinds of syntax but with no luck. Any help will be greatly appreciated.
Try this code in Custom tab. Use tag’s name as the name of the slot/button:
pms = [pm for pm in prefs().pie_menus if pm.has_tag(text) and pm.enabled]; enable = len(pms) == 0; icon='CHECKBOX_DEHLT' if enable else 'CHECKBOX_HLT'; operator(L, "pme.pm_enable_by_tag", text, icon, tag=text, enable=enable)
Where text is the name of the slot/button.
Leafar:
I don´t get this menu to work with TEXT object type, why? Anyone else works perfectly.
Try to rename Object: TEXT to Object: FONT