@onerjs/gui 8.30.8 → 8.31.0
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.
package/2D/controls/control.js
CHANGED
|
@@ -1576,11 +1576,11 @@ export class Control {
|
|
|
1576
1576
|
// Let children take some post-measurement actions
|
|
1577
1577
|
this._postMeasure(this._tempPaddingMeasure, context);
|
|
1578
1578
|
this._computeAlignment(this._tempPaddingMeasure, context);
|
|
1579
|
-
// Convert to int values
|
|
1580
|
-
this._currentMeasure.left = this._currentMeasure.left | 0;
|
|
1581
|
-
this._currentMeasure.top = this._currentMeasure.top | 0;
|
|
1582
|
-
this._currentMeasure.width = this._currentMeasure.width | 0;
|
|
1583
|
-
this._currentMeasure.height = this._currentMeasure.height | 0;
|
|
1579
|
+
// // Convert to int values
|
|
1580
|
+
// this._currentMeasure.left = this._currentMeasure.left | 0;
|
|
1581
|
+
// this._currentMeasure.top = this._currentMeasure.top | 0;
|
|
1582
|
+
// this._currentMeasure.width = this._currentMeasure.width | 0;
|
|
1583
|
+
// this._currentMeasure.height = this._currentMeasure.height | 0;
|
|
1584
1584
|
// Let children add more features
|
|
1585
1585
|
this._additionalProcessing(this._tempPaddingMeasure, context);
|
|
1586
1586
|
this._cachedParentMeasure.copyFrom(this._tempPaddingMeasure);
|