diff options
author | harrym@chromium.org <harrym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-02 00:25:04 +0000 |
---|---|---|
committer | harrym@chromium.org <harrym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-02 00:25:04 +0000 |
commit | 2ff9e6ce7a34ef362fe00f0f33eb109cad2d6e89 (patch) | |
tree | 2e4fc174ba5831e48c11d59491fab9e684f4068d /ash/shelf | |
parent | a4ca8afc664596d6141e827dd8a7ad674bddb4d7 (diff) | |
download | chromium_src-2ff9e6ce7a34ef362fe00f0f33eb109cad2d6e89.zip chromium_src-2ff9e6ce7a34ef362fe00f0f33eb109cad2d6e89.tar.gz chromium_src-2ff9e6ce7a34ef362fe00f0f33eb109cad2d6e89.tar.bz2 |
App list icon changes
Create a separate flow for the app list icon (behind alternate-shelf-layout flag) whereby the app list icon has different state indication (background images), can be reordered, and defaults to be the first item in the launcher.
BUG=244994
Review URL: https://chromiumcodereview.appspot.com/16831018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209556 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shelf')
-rw-r--r-- | ash/shelf/shelf_widget.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ash/shelf/shelf_widget.cc b/ash/shelf/shelf_widget.cc index 8774f89..7fe0a4e 100644 --- a/ash/shelf/shelf_widget.cc +++ b/ash/shelf/shelf_widget.cc @@ -489,6 +489,8 @@ void ShelfWidget::SetAlignment(ShelfAlignment alignment) { void ShelfWidget::SetDimsShelf(bool dimming) { delegate_view_->SetDimmed(dimming); + if (launcher_) + launcher_->GetAppListButtonView()->SchedulePaint(); } bool ShelfWidget::GetDimsShelf() const { |