| Index: third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js b/third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js
|
| index 3f9e8395506dba7a169acaca185c83653b6db77a..41d618c58d4ab22fa27a099b24d24d15c73e3456 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js
|
| @@ -477,8 +477,9 @@ WebInspector.SplitWidget.prototype = {
|
| this._removeAllLayoutProperties();
|
|
|
| // this._totalSizeDIP is available below since we successfully applied constraints.
|
| - var sidebarSizeValue = WebInspector.zoomManager.dipToCSS(sizeDIP) + "px";
|
| - var mainSizeValue = (this._totalSizeCSS - WebInspector.zoomManager.dipToCSS(sizeDIP)) + "px";
|
| + var roundSizeCSS = Math.round(WebInspector.zoomManager.dipToCSS(sizeDIP));
|
| + var sidebarSizeValue = roundSizeCSS + "px";
|
| + var mainSizeValue = (this._totalSizeCSS - roundSizeCSS) + "px";
|
| this._sidebarElement.style.flexBasis = sidebarSizeValue;
|
|
|
| // Make both sides relayout boundaries.
|
|
|