| Index: chrome/browser/resources/settings/search_engines_page/search_engine_dialog.js
|
| diff --git a/chrome/browser/resources/settings/search_engines_page/search_engine_dialog.js b/chrome/browser/resources/settings/search_engines_page/search_engine_dialog.js
|
| index bf275f9ac548d4c2b67bf3c21e3443c3407f8cfc..b941b1b98403c92dbe87e2c1630b7fc2cce2d25c 100644
|
| --- a/chrome/browser/resources/settings/search_engines_page/search_engine_dialog.js
|
| +++ b/chrome/browser/resources/settings/search_engines_page/search_engine_dialog.js
|
| @@ -86,6 +86,10 @@ Polymer({
|
|
|
| /** @private */
|
| onActionButtonTap_: function() {
|
| + // This method may be called via keybinding, so we ignore invalid input.
|
| + if (this.$.actionButton.disabled)
|
| + return;
|
| +
|
| this.browserProxy_.searchEngineEditCompleted(
|
| this.searchEngine_, this.keyword_, this.queryUrl_);
|
| this.$.dialog.close();
|
|
|