Chromium Code Reviews| 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(); |