mirror of https://github.com/gorhill/uBlock.git
Avoid fractional pixel in viewport height
Fractional pixel could lead to minor scrollbar glitch -- reported internally.
This commit is contained in:
parent
b69d802f17
commit
6c90cdae3a
|
@ -2787,7 +2787,7 @@ logger.resize = (function() {
|
||||||
const crect = elem.getBoundingClientRect();
|
const crect = elem.getBoundingClientRect();
|
||||||
const dh = crect.bottom - vrect.bottom;
|
const dh = crect.bottom - vrect.bottom;
|
||||||
if ( dh === 0 ) { continue; }
|
if ( dh === 0 ) { continue; }
|
||||||
elem.style.height = (crect.height - dh) + 'px';
|
elem.style.height = Math.ceil(crect.height - dh) + 'px';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue