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

Unified Diff: Source/devtools/front_end/ui/SearchableView.js

Issue 1164763004: DevTools: render category filters in a way that they don't clash. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: for landing Created 5 years, 6 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
« no previous file with comments | « Source/devtools/front_end/ui/FilterBar.js ('k') | Source/devtools/front_end/ui/UIUtils.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui/SearchableView.js
diff --git a/Source/devtools/front_end/ui/SearchableView.js b/Source/devtools/front_end/ui/SearchableView.js
index 0d228b63a33f80c2e96295d6f14d5262ab6dce80..d256817809d178d97c39585ebe419dc329fc40b0 100644
--- a/Source/devtools/front_end/ui/SearchableView.js
+++ b/Source/devtools/front_end/ui/SearchableView.js
@@ -50,7 +50,8 @@ WebInspector.SearchableView = function(searchable, settingName)
this._footerElementContainer.style.order = 100;
var toolbar = new WebInspector.Toolbar(this._footerElementContainer);
- toolbar.makeNarrow();
+ if (!Runtime.experiments.isEnabled("materialDesign"))
+ toolbar.makeNarrow();
if (this._searchProvider.supportsCaseSensitiveSearch()) {
this._caseSensitiveButton = new WebInspector.ToolbarTextButton(WebInspector.UIString("Case sensitive"), "case-sensitive-search-toolbar-item", "Aa", 2);
« no previous file with comments | « Source/devtools/front_end/ui/FilterBar.js ('k') | Source/devtools/front_end/ui/UIUtils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698