| Index: trunk/src/athena/wm/window_manager_impl.cc
|
| ===================================================================
|
| --- trunk/src/athena/wm/window_manager_impl.cc (revision 283780)
|
| +++ trunk/src/athena/wm/window_manager_impl.cc (working copy)
|
| @@ -23,6 +23,8 @@
|
| WindowManagerImpl();
|
| virtual ~WindowManagerImpl();
|
|
|
| + void Init() { InstallAccelerators(); }
|
| +
|
| void Layout();
|
|
|
| // WindowManager:
|
| @@ -40,7 +42,7 @@
|
|
|
| void InstallAccelerators() {
|
| const AcceleratorData accelerator_data[] = {
|
| - {TRIGGER_ON_PRESS, ui::VKEY_F6, ui::EF_NONE, COMMAND_TOGGLE_OVERVIEW,
|
| + {TRIGGER_ON_PRESS, ui::VKEY_6, ui::EF_NONE, COMMAND_TOGGLE_OVERVIEW,
|
| AF_NONE},
|
| };
|
| AcceleratorManager::Get()->RegisterAccelerators(
|
| @@ -114,7 +116,6 @@
|
| container_->SetLayoutManager(new AthenaContainerLayoutManager);
|
| container_->AddObserver(this);
|
| instance = this;
|
| - InstallAccelerators();
|
| }
|
|
|
| WindowManagerImpl::~WindowManagerImpl() {
|
|
|