@onerjs/gui 8.32.5 → 8.32.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1450,7 +1450,7 @@ export class Control {
1450
1450
  const bottomShadowOffset = Math.max(Math.max(shadowOffsetY, 0) + shadowBlur * 2, 0);
1451
1451
  const offsetX = this._computeAdditionalOffsetX();
1452
1452
  const offsetY = this._computeAdditionalOffsetY();
1453
- this.host.invalidateRect(Math.floor(this._tmpMeasureA.left + leftShadowOffset - offsetX), Math.floor(this._tmpMeasureA.top + topShadowOffset - offsetY), Math.ceil(this._tmpMeasureA.left + this._tmpMeasureA.width + rightShadowOffset + offsetX), Math.ceil(this._tmpMeasureA.top + this._tmpMeasureA.height + bottomShadowOffset + offsetY));
1453
+ this.host.invalidateRect(this._tmpMeasureA.left + leftShadowOffset - offsetX, this._tmpMeasureA.top + topShadowOffset - offsetY, this._tmpMeasureA.left + this._tmpMeasureA.width + rightShadowOffset + offsetX, this._tmpMeasureA.top + this._tmpMeasureA.height + bottomShadowOffset + offsetY);
1454
1454
  }
1455
1455
  }
1456
1456
  /**