Skip to content

Commit

Permalink
Merge pull request #1626 from HEXRD/fix-reflections-table-copy-paste
Browse files Browse the repository at this point in the history
Fix copy-paste action for reflections table
  • Loading branch information
psavery authored Nov 28, 2023
2 parents 4d85888 + 2830e09 commit 2ea73fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hexrdgui/reflections_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def copy_selected_to_clipboard(self):

# Write the headers
headers = [table.horizontalHeaderItem(j).text()
for j in range(table.columnCount)]
for j in range(table.columnCount())]
writer.writerow(headers)

# Write the rows
Expand Down

0 comments on commit 2ea73fe

Please sign in to comment.