mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
Merge pull request #635 from Blakjak88/master
fix writing of missing showGridLines attribute to xlsx file
This commit is contained in:
commit
538f80794c
|
@ -2310,6 +2310,11 @@ void xlsx_producer::write_worksheet(const relationship &rel)
|
|||
const auto wb_view = source_.view();
|
||||
const auto view = ws.view();
|
||||
|
||||
if (!view.show_grid_lines())
|
||||
{
|
||||
write_attribute("showGridLines", write_bool(view.show_grid_lines()));
|
||||
}
|
||||
|
||||
if ((wb_view.active_tab.is_set() && (ws.id() - 1) == wb_view.active_tab.get())
|
||||
|| (!wb_view.active_tab.is_set() && ws.id() == 1))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user