New feature to bulk add smart annotations to objects

This commit is contained in:
Dion Moult
2020-05-07 09:36:38 +10:00
parent 0af8902dde
commit 673f12dd8a
6 changed files with 64 additions and 20 deletions
+5 -3
View File
@@ -658,10 +658,14 @@ class BIM_PT_text(Panel):
props = context.active_object.data.BIMTextProperties
row = layout.row()
row.prop(props, 'font_size')
row.operator('bim.propagate_text_data')
row = layout.row()
row.prop(props, 'font_size')
row = layout.row()
row.prop(props, 'symbol')
row = layout.row()
row.prop(props, 'related_element')
row = layout.row()
row.operator('bim.add_variable')
@@ -671,8 +675,6 @@ class BIM_PT_text(Panel):
row.prop(variable, 'name')
row.operator('bim.remove_variable', icon='X', text='').index = index
row = layout.row()
row.prop(variable, 'global_id')
row = layout.row()
row.prop(variable, 'prop_key')