Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js

Issue 2609353002: DevTools: Remove left margin when DevTools is docked (Closed)
Patch Set: Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js
diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js b/third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js
index 24117b8a300bfddb51fea298a90e6b16f4bcbe55..4543d67911cc37c81c5691a6571830f2c7594d92 100644
--- a/third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js
+++ b/third_party/WebKit/Source/devtools/front_end/emulation/AdvancedApp.js
@@ -27,7 +27,7 @@ Emulation.AdvancedApp = class {
presentUI(document) {
var rootView = new UI.RootView();
- this._rootSplitWidget = new UI.SplitWidget(false, true, 'InspectorView.splitViewState', 555, 300, true);
+ this._rootSplitWidget = new UI.SplitWidget(false, true, 'InspectorView.splitViewState', 555, 300, true, 10);
einbinder 2017/01/04 00:26:26 There is a click area of 5px, down from 6px.
this._rootSplitWidget.show(rootView.element);
this._rootSplitWidget.setSidebarWidget(UI.inspectorView);
this._rootSplitWidget.setDefaultFocusedChild(UI.inspectorView);

Powered by Google App Engine
This is Rietveld 408576698