Cleanup: line length

This commit is contained in:
Campbell Barton
2019-01-30 09:03:37 +11:00
parent 7d91ef0488
commit 7894d6c6f1
15 changed files with 48 additions and 24 deletions

View File

@@ -53,7 +53,8 @@ class UIListPanelExample(bpy.types.Panel):
# with no custom draw code, use "UI_UL_list").
layout.template_list("MATERIAL_UL_matslots_example", "", obj, "material_slots", obj, "active_material_index")
# The second one can usually be left as an empty string. It's an additional ID used to distinguish lists in case you
# The second one can usually be left as an empty string.
# It's an additional ID used to distinguish lists in case you
# use the same list several times in a given area.
layout.template_list("MATERIAL_UL_matslots_example", "compact", obj, "material_slots",
obj, "active_material_index", type='COMPACT')