Skip to content

Commit

Permalink
Merge pull request #387 from sebhub/fix-372
Browse files Browse the repository at this point in the history
Freeze top row in exported *.xlsx
  • Loading branch information
jacebrowning committed Jul 28, 2019
2 parents 5cfe1d7 + 9324083 commit 78e905c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doorstop/core/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def _get_xlsx(obj, auto):
worksheet.column_dimensions[col_letter].width = width

# Freeze top row
worksheet.freeze_panes = worksheet.cell(row=1, column=1)
worksheet.freeze_panes = worksheet.cell(row=2, column=1)

return workbook

Expand Down

0 comments on commit 78e905c

Please sign in to comment.