Browse Source

Fix to natural column width calculations in Table footer. (#12074)

* Fix to natural column width calculations in Table footer.
tags/8.12.0.alpha2
Anna Koskinen 3 years ago
parent
commit
aa3757c664
No account linked to committer's email address

+ 1
- 1
compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java View File

@@ -4417,7 +4417,7 @@ public class VScrollTable extends FlowPanel
.getOffsetWidth() + getHeaderPadding();
if (columnIndex < 0) {
columnIndex = 0;
for (Widget widget : tHead) {
for (Widget widget : tFoot) {
if (widget == this) {
break;
}

Loading…
Cancel
Save