Fix Bug 70249

This commit is contained in:
Julia Radzhabova
2024-09-16 22:48:09 +03:00
parent 1dbe853d5c
commit 7da87bfdff

View File

@ -951,7 +951,7 @@ define([
arrowView.toggleClass('top', isMoveDown);
arrowView.toggleClass('bottom', !isMoveDown);
arrowView.removeClass('left right');
} else if (sdkBoundsHeight <= outerHeight) {
} else if (Math.ceil(sdkBoundsHeight) <= Math.ceil(outerHeight)) {
this.$window.css({
maxHeight: sdkBoundsHeight - sdkPanelHeight + 'px',
top: sdkBoundsTop + sdkPanelHeight + 'px'