| Index: ash/system/ime/tray_ime.cc
|
| diff --git a/ash/system/ime/tray_ime.cc b/ash/system/ime/tray_ime.cc
|
| index a2dafa4d7a5269c3a5b5de68168d939954d7aa6e..38c1e3e607f1c47fc53bb39fea0b1991b3dd4280 100644
|
| --- a/ash/system/ime/tray_ime.cc
|
| +++ b/ash/system/ime/tray_ime.cc
|
| @@ -101,7 +101,9 @@ class IMEDetailedView : public TrayDetailsView,
|
| CreateScrollableList();
|
| for (size_t i = 0; i < list.size(); i++) {
|
| HoverHighlightView* container = new HoverHighlightView(this);
|
| - container->AddLabel(list[i].name,
|
| + container->AddLabel(
|
| + list[i].name,
|
| + gfx::ALIGN_LEFT,
|
| list[i].selected ? gfx::Font::BOLD : gfx::Font::NORMAL);
|
| scroll_content()->AddChildView(container);
|
| ime_map_[container] = list[i].id;
|
| @@ -114,6 +116,7 @@ class IMEDetailedView : public TrayDetailsView,
|
| HoverHighlightView* container = new HoverHighlightView(this);
|
| container->AddLabel(
|
| property_list[i].name,
|
| + gfx::ALIGN_LEFT,
|
| property_list[i].selected ? gfx::Font::BOLD : gfx::Font::NORMAL);
|
| if (i == 0)
|
| container->SetBorder(views::Border::CreateSolidSidedBorder(
|
| @@ -125,8 +128,10 @@ class IMEDetailedView : public TrayDetailsView,
|
|
|
| void AppendSettings() {
|
| HoverHighlightView* container = new HoverHighlightView(this);
|
| - container->AddLabel(ui::ResourceBundle::GetSharedInstance().
|
| - GetLocalizedString(IDS_ASH_STATUS_TRAY_IME_SETTINGS),
|
| + container->AddLabel(
|
| + ui::ResourceBundle::GetSharedInstance().GetLocalizedString(
|
| + IDS_ASH_STATUS_TRAY_IME_SETTINGS),
|
| + gfx::ALIGN_LEFT,
|
| gfx::Font::NORMAL);
|
| AddChildView(container);
|
| settings_ = container;
|
|
|