Index: chrome/browser/resources/ntp/apps.js |
diff --git a/chrome/browser/resources/ntp/apps.js b/chrome/browser/resources/ntp/apps.js |
index ffab6f87f70a662a2ba5b195d1f4d81b95253079..53055e43728e6ac1b617ee76dce85930a0026f62 100644 |
--- a/chrome/browser/resources/ntp/apps.js |
+++ b/chrome/browser/resources/ntp/apps.js |
@@ -357,6 +357,7 @@ var apps = (function() { |
$('apps-launch-command').label = app['name']; |
$('apps-options-command').canExecuteChange(); |
+ $('apps-uninstall-command').canExecuteChange(); |
var launchTypeEl; |
if (el.getAttribute('app-id') === app['id']) { |
@@ -425,7 +426,7 @@ var apps = (function() { |
e.canExecute = true; |
break; |
case 'apps-uninstall-command': |
- e.canExecute = currentApp && !currentApp['can_uninstall']; |
+ e.canExecute = currentApp && currentApp['can_uninstall']; |
break; |
} |
}); |