Post #2670: : post_02671
🏷️ Tags
popup-dialog ui-layout beginner
⚙️ Related PME Features
- Popup Dialog Editor
- Python Scripting
💬 Content
RaphaelBarros:
Does this require I use a custom UV Layout for every operator?
You can group buttons you want to grayed out into sub-column:
sub = layout.column()
sub.enabled = False
sub.operator(...)
sub.operator(...)
sub.operator(...)