~3v1n0/unity/scale-window-cast-protection

« back to all changes in this revision

Viewing changes to launcher/LauncherController.cpp

  • Committer: handsome_feng
  • Date: 2016-03-17 12:46:54 UTC
  • mto: This revision was merged to the branch mainline in revision 4090.
  • Revision ID: 445865575@qq.com-20160317124654-l0zmwa5n6gj2xajk
fix nav with quicklist

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
    }
181
181
  });
182
182
 
 
183
  ubus.RegisterInterest(UBUS_LAUNCHER_NEXT_KEY_NAV, [this] (GVariant*) {
 
184
    parent_->KeyNavNext();
 
185
  });
 
186
 
 
187
  ubus.RegisterInterest(UBUS_LAUNCHER_PREV_KEY_NAV, [this] (GVariant*) {
 
188
    parent_->KeyNavPrevious();
 
189
  });
 
190
 
 
191
  ubus.RegisterInterest(UBUS_LAUNCHER_OPEN_QUICKLIST, [this] (GVariant*) {
 
192
    OpenQuicklist();
 
193
  });
 
194
 
183
195
  parent_->AddChild(model_.get());
184
196
 
185
197
  xdnd_manager_->dnd_started.connect(sigc::mem_fun(this, &Impl::OnDndStarted));