Skip to content

Commit 71b62c8

Browse files
committed
Report.report_table: fix hheader shift when vheader present
Refs: #1560 (comment)
1 parent 375e591 commit 71b62c8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Orange/canvas/report/report.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,8 @@ def data(role=Qt.DisplayRole,
257257

258258
if has_horizontal_header:
259259
stream.append('<tr>')
260+
if has_vertical_header:
261+
stream.append('<th></th>')
260262
stream.extend(item_html(None, col) for col in columns)
261263
stream.append('</tr>')
262264

0 commit comments

Comments
 (0)