Skip to content

Commit

Permalink
fix #4327: reorder format as well
Browse files Browse the repository at this point in the history
  • Loading branch information
theoryshaw committed Apr 27, 2024
1 parent 6773249 commit 44c28e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blenderbim/blenderbim/bim/module/csv/operator.py
Expand Up @@ -72,7 +72,7 @@ class ReorderCsvAttribute(bpy.types.Operator):
def execute(self, context):
old = context.scene.CsvProperties.csv_attributes[self.old_index]
new = context.scene.CsvProperties.csv_attributes[self.new_index]
props = ["name", "header", "sort", "group", "varies_value", "summary"]
props = ["name", "header", "sort", "group", "varies_value", "summary", "formatting"]
for prop in props:
value = getattr(new, prop)
setattr(new, prop, getattr(old, prop))
Expand Down

0 comments on commit 44c28e9

Please sign in to comment.