Cleaned up formatting to align with master v0.6 branch

This commit is contained in:
Kristoffer
2020-11-09 13:40:14 +01:00
parent 2a585c98d8
commit 26510de9e0
3 changed files with 76 additions and 79 deletions
+2 -2
View File
@@ -1717,7 +1717,7 @@ class BIM_PT_bcf(Panel):
layout.label(text="Document References:")
for index, doc in enumerate(props.topic_document_references):
row = layout.row(align=True)
row.prop(doc, "name", text=f"File {index + 1} URI")
row.prop(doc, "name", text=f"File {index+1} URI")
if doc.is_external:
row.operator("bim.open_bcf_document_reference", icon="URL", text="").data = "{}/{}".format(
props.topic_guid, index
@@ -1727,7 +1727,7 @@ class BIM_PT_bcf(Panel):
props.topic_guid, index
)
row = layout.row(align=True)
row.prop(doc, "description", text=f"File {index + 1} Description:")
row.prop(doc, "description", text=f"File {index+1} Description:")
layout.label(text="Related Topics:")
for topic in props.topic_related_topics: