mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-14 10:28:31 +02:00
Fixed problem with column widths not being calculated/displayed correctly
This commit is contained in:
@ -1052,7 +1052,7 @@ var et2_dataview_partitionSpacerNode = et2_dataview_partitionContainerNode.exten
|
||||
// created.
|
||||
var ah = this._avgHeight;
|
||||
var startIdx = Math.max(0, Math.floor((_range.top - t) / ah));
|
||||
var stopIdx = Math.min(this._count - 1, Math.ceil((_range.bottom - t) / ah));
|
||||
var stopIdx = Math.min(this._count, Math.ceil((_range.bottom - t) / ah));
|
||||
|
||||
if (startIdx > 0 && startIdx < this._count)
|
||||
{
|
||||
|
Reference in New Issue
Block a user