Index: chrome/browser/resources/options/personal_options.js |
diff --git a/chrome/browser/resources/options/personal_options.js b/chrome/browser/resources/options/personal_options.js |
index be8a433a48127dc754b35c74a1a403857cadc940..6dfa1aa884337be07fc918e74a480beb7eb3b2f7 100644 |
--- a/chrome/browser/resources/options/personal_options.js |
+++ b/chrome/browser/resources/options/personal_options.js |
@@ -223,7 +223,8 @@ cr.define('options', function() { |
var selectedProfile = profilesList.selectedItem; |
var hasSelection = selectedProfile != null; |
var hasSingleProfile = profilesList.dataModel.length == 1; |
- $('profiles-manage').disabled = !hasSelection; |
+ $('profiles-manage').disabled = !hasSelection || |
+ !selectedProfile.isCurrentProfile; |
$('profiles-delete').disabled = !hasSelection || hasSingleProfile; |
}, |