Commit a78fcc79 authored by Tatuya Kamada's avatar Tatuya Kamada Committed by Yusei Tahara

FormPrintout: Use the specified style even if the bottom of the listbox.

parent 16b10406
......@@ -693,7 +693,7 @@ class ODFStrategy(Implicit):
newtable.append(row)
is_top = False
elif listboxline.isStatLine() or (index is last_index and listboxline.isDataLine()):
row = deepcopy(row_bottom)
row = deepcopy(style_name_row_dictionary.get(row_style_name, row_bottom))
self._updateColumnStatValue(row, listbox_column_list, row_middle)
newtable.append(row)
elif index > 0 and listboxline.isDataLine():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment