| Index: ash/shell/app_list.cc
|
| diff --git a/ash/shell/app_list.cc b/ash/shell/app_list.cc
|
| index 498de37848faadd64a7adaae4523c5d80ce3a265..14974588cf8342d879caf72f53d1fd653d6a1654 100644
|
| --- a/ash/shell/app_list.cc
|
| +++ b/ash/shell/app_list.cc
|
| @@ -45,8 +45,9 @@ class WindowTypeLauncherItem : public app_list::AppListItemModel {
|
| };
|
|
|
| explicit WindowTypeLauncherItem(Type type) : type_(type) {
|
| + std::string title(GetTitle(type));
|
| SetIcon(GetIcon(type), false);
|
| - SetTitle(GetTitle(type));
|
| + SetTitleAndFullName(title, title);
|
| }
|
|
|
| static gfx::ImageSkia GetIcon(Type type) {
|
|
|