Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(515)

Unified Diff: chrome/browser/views/wrench_menu.cc

Issue 3055006: UpdateZoomControls honors the global enabled state of the zoom commands.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/wrench_menu.cc
===================================================================
--- chrome/browser/views/wrench_menu.cc (revision 53070)
+++ chrome/browser/views/wrench_menu.cc (working copy)
@@ -456,10 +456,17 @@
bool enable_increment, enable_decrement;
int zoom_percent =
static_cast<int>(GetZoom(&enable_increment, &enable_decrement));
+ enable_increment = enable_increment &&
+ menu_model_->IsEnabledAt(increment_button_->tag());
+ enable_decrement = enable_decrement &&
+ menu_model_->IsEnabledAt(decrement_button_->tag());
+ increment_button_->SetEnabled(enable_increment);
+ decrement_button_->SetEnabled(enable_decrement);
zoom_label_->SetText(l10n_util::GetStringF(
IDS_ZOOM_PERCENT, IntToWString(zoom_percent)));
- increment_button_->SetEnabled(enable_increment);
- decrement_button_->SetEnabled(enable_decrement);
+ // If both increment and decrement are disabled, then we disable the zoom
+ // label too.
+ zoom_label_->SetEnabled(enable_increment || enable_decrement);
}
double GetZoom(bool* enable_increment, bool* enable_decrement) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698