3 wide tables now go to their own tab

This commit is contained in:
Rsl1122 2019-10-04 20:20:26 +03:00
parent 4c55c642bd
commit 84853ccec2

View File

@ -101,6 +101,6 @@ public class ExtensionTableData implements Comparable<ExtensionTableData> {
}
public boolean isWideTable() {
return table.getMaxColumnSize() > 3;
return table.getMaxColumnSize() >= 3;
}
}