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

Unified Diff: third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js

Issue 2680543003: DevTools: Show scrollbars on a small FilteredListWidget (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | third_party/WebKit/Source/devtools/front_end/quick_open/filteredListWidget.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js b/third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js
index d1f59e3de5d1300df550afe3a9e11dd09f17877f..00e3b286ca2831c544b0ee7c45924b3af0ed831d 100644
--- a/third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js
@@ -118,7 +118,8 @@ QuickOpen.FilteredListWidget = class extends UI.VBox {
showAsDialog() {
this._dialog = new UI.Dialog();
- this._dialog.setWrapsContent(true);
+ this._dialog.setMaxSize(new UI.Size(504, 340));
+ this._dialog.setFixedHeight(false);
pfeldman 2017/02/06 21:41:44 Looking at the bug, I don't see where the height b
this._dialog.setPosition(null, 22);
this.show(this._dialog.element);
this._dialog.show();
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/quick_open/filteredListWidget.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698