.
This commit is contained in:
parent
adbf4750cc
commit
6b1e74790b
@ -3537,7 +3537,13 @@ export class Grid {
|
||||
}
|
||||
}
|
||||
|
||||
_topToIndex(top) {
|
||||
/**
|
||||
* @private
|
||||
* @param {number} top
|
||||
* @param {boolean} [reload]
|
||||
* @returns {number}
|
||||
*/
|
||||
_topToIndex(top, reload) {
|
||||
const rowHeight = (this.rowHeight + 1);
|
||||
top -= (top % (rowHeight * 2)) + (RedumCount * rowHeight);
|
||||
if (top < 0) {
|
||||
@ -3561,7 +3567,7 @@ export class Grid {
|
||||
* @returns {number}
|
||||
*/
|
||||
_scrollToTop(top, reload) {
|
||||
const tti = this._topToIndex(top);
|
||||
const tti = this._topToIndex(top, reload);
|
||||
top = tti.top;
|
||||
if (this._var.scrollTop !== top) {
|
||||
this._var.scrollTop = top;
|
||||
|
Loading…
x
Reference in New Issue
Block a user