UI: move checkbox for missing add-ons to LHS

This commit is contained in:
Campbell Barton
2016-03-03 18:50:15 +11:00
parent a47bfe7d40
commit d1499ba9fb

View File

@@ -1456,12 +1456,15 @@ class USERPREF_PT_addons(Panel):
# Addon UI Code # Addon UI Code
box = col.column().box() box = col.column().box()
colsub = box.column() colsub = box.column()
row = colsub.row() row = colsub.row(align=True)
row.label(text=module_name, translate=False, icon='ERROR') row.label(text="", icon='ERROR')
if is_enabled: if is_enabled:
row.operator("wm.addon_disable", icon='CHECKBOX_HLT', text="", emboss=False).module = module_name row.operator("wm.addon_disable", icon='CHECKBOX_HLT', text="", emboss=False).module = module_name
row.label(text=module_name, translate=False)
if __name__ == "__main__": # only for live edit. if __name__ == "__main__": # only for live edit.
bpy.utils.register_module(__name__) bpy.utils.register_module(__name__)