| Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.js
|
| diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.js b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.js
|
| index 7b410b0c33b6a542dd0f22d203acf840ea53bbda..f700878bf38254bd346678f34323608a805d1d43 100644
|
| --- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.js
|
| +++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.js
|
| @@ -33,6 +33,8 @@ settings.BluetoothAddDeviceBehavior = {
|
| },
|
| },
|
|
|
| + observers: ['deviceListChanged_(deviceList.*)'],
|
| +
|
| /** @private */
|
| adapterStateChanged_: function() {
|
| if (!this.adapterState.powered)
|
| @@ -325,6 +327,11 @@ Polymer({
|
| dialogType: String,
|
| },
|
|
|
| + /** @private */
|
| + deviceListChanged_: function(e) {
|
| + this.$.dialog.notifyResize();
|
| + },
|
| +
|
| /**
|
| * @param {string} dialogType
|
| * @return {string} The title of for that |dialogType|.
|
|
|