Index: ui/file_manager/file_manager/foreground/js/ui/combobutton.js |
diff --git a/ui/file_manager/file_manager/foreground/js/ui/combobutton.js b/ui/file_manager/file_manager/foreground/js/ui/combobutton.js |
index 59ae9f2b6ed24c66048581efe24ea43dd9726e15..85f962dd1306320ec481610006eef672b749e34d 100644 |
--- a/ui/file_manager/file_manager/foreground/js/ui/combobutton.js |
+++ b/ui/file_manager/file_manager/foreground/js/ui/combobutton.js |
@@ -13,7 +13,7 @@ cr.define('cr.ui', function() { |
* Creates a new combobutton element. |
* @param {Object=} opt_propertyBag Optional properties. |
* @constructor |
- * @extends {HTMLUListElement} |
+ * @extends {cr.ui.MenuButton} |
*/ |
var ComboButton = cr.ui.define(cr.ui.MenuButton); |
@@ -116,7 +116,7 @@ cr.define('cr.ui', function() { |
case 'Down': |
case 'Up': |
if (!this.isMenuShown()) |
- this.showMenu(); |
+ this.showMenu(false); |
e.preventDefault(); |
break; |
case 'Esc': |