You can now add new BCF topics to a BCF project

This commit is contained in:
Dion Moult
2020-12-14 13:29:52 +11:00
parent e208dd0381
commit 4f2bf3a36f
4 changed files with 32 additions and 6 deletions
+4 -1
View File
@@ -1678,7 +1678,10 @@ class BIM_PT_bcf(Panel):
return
props = bpy.context.scene.BCFProperties
layout.template_list("BIM_UL_topics", "", props, "topics", props, "active_topic_index")
row = layout.row()
row.template_list("BIM_UL_topics", "", props, "topics", props, "active_topic_index")
col = row.column(align=True)
col.operator("bim.add_bcf_topic", icon="ADD", text="")
row = layout.row()
row.prop(props, "topic_description", text="")