Merge lp:~barneedhar/unity/lp-937334 into lp:unity

Proposed by Barneedhar
Status: Merged
Approved by: Andrea Azzarone
Approved revision: no longer in the source branch.
Merged at revision: 2535
Proposed branch: lp:~barneedhar/unity/lp-937334
Merge into: lp:unity
Diff against target: 11 lines (+1/-0)
1 file modified
plugins/unityshell/src/unityshell.cpp (+1/-0)
To merge this branch: bzr merge lp:~barneedhar/unity/lp-937334
Reviewer Review Type Date Requested Status
Łukasz Zemczak Approve
Review via email: mp+115086@code.launchpad.net

Commit message

Add keyboard shortcut for the video lens in the shortcut overlay.

Description of the change

== Problem ==
No video lens shortcut in the shortcut overlay.

== Fix ==
Added keyboard shortcut for the video lens in the shortcut overlay.

== Test ==
Not applicable.

To post a comment you must log in.
Revision history for this message
Łukasz Zemczak (sil2100) wrote :

Tested the branch - works fine for me. We'd need to get this translated though ;)
Anyway, approve from me!

For the branch to get merged we'll still have to wait a bit, since trunk has some problems right now.

review: Approve
Revision history for this message
Unity Merger (unity-merger) wrote :

No commit message specified.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/unityshell/src/unityshell.cpp'
2--- plugins/unityshell/src/unityshell.cpp 2012-07-12 23:09:29 +0000
3+++ plugins/unityshell/src/unityshell.cpp 2012-07-16 09:29:19 +0000
4@@ -3012,6 +3012,7 @@
5 hints_.push_back(std::make_shared<shortcut::Hint>(dash, "", " + A", _("Open the Dash App Lens."), shortcut::COMPIZ_KEY_OPTION, "unityshell", "show_launcher"));
6 hints_.push_back(std::make_shared<shortcut::Hint>(dash, "", " + F", _("Open the Dash Files Lens."), shortcut::COMPIZ_KEY_OPTION,"unityshell", "show_launcher"));
7 hints_.push_back(std::make_shared<shortcut::Hint>(dash, "", " + M", _("Open the Dash Music Lens."), shortcut::COMPIZ_KEY_OPTION, "unityshell", "show_launcher"));
8+ hints_.push_back(std::make_shared<shortcut::Hint>(dash, "", " + V", _("Open the Dash Video Lens."), shortcut::COMPIZ_KEY_OPTION, "unityshell", "show_launcher"));
9 hints_.push_back(std::make_shared<shortcut::Hint>(dash, "", "", _("Switches between Lenses."), shortcut::HARDCODED_OPTION, _("Ctrl + Tab")));
10 hints_.push_back(std::make_shared<shortcut::Hint>(dash, "", "", _("Moves the focus."), shortcut::HARDCODED_OPTION, _("Cursor Keys")));
11 hints_.push_back(std::make_shared<shortcut::Hint>(dash, "", "", _("Open currently focused item."), shortcut::HARDCODED_OPTION, _("Enter & Return")));