Merge lp:~azzar1/unity/lp-1363534 into lp:unity

Proposed by Andrea Azzarone
Status: Merged
Approved by: Stephen M. Webb
Approved revision: no longer in the source branch.
Merged at revision: 3873
Proposed branch: lp:~azzar1/unity/lp-1363534
Merge into: lp:unity
Diff against target: 19 lines (+2/-2)
1 file modified
shortcuts/CompizShortcutModeller.cpp (+2/-2)
To merge this branch: bzr merge lp:~azzar1/unity/lp-1363534
Reviewer Review Type Date Requested Status
Stephen M. Webb (community) Approve
PS Jenkins bot (community) continuous-integration Approve
Review via email: mp+234158@code.launchpad.net

Commit message

Use COMPIZ_METAKEY where needed.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Stephen M. Webb (bregma) wrote :

OK

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'shortcuts/CompizShortcutModeller.cpp'
--- shortcuts/CompizShortcutModeller.cpp 2014-03-04 18:35:10 +0000
+++ shortcuts/CompizShortcutModeller.cpp 2014-09-10 17:24:51 +0000
@@ -283,13 +283,13 @@
283283
284 hints.push_back(std::make_shared<shortcut::Hint>(workspaces, "", _(" + Arrow Keys"),284 hints.push_back(std::make_shared<shortcut::Hint>(workspaces, "", _(" + Arrow Keys"),
285 _("Switches workspaces."),285 _("Switches workspaces."),
286 shortcut::OptionType::COMPIZ_KEY,286 shortcut::OptionType::COMPIZ_METAKEY,
287 WALL_PLUGIN_NAME,287 WALL_PLUGIN_NAME,
288 WALL_OPTION_LEFT_KEY));288 WALL_OPTION_LEFT_KEY));
289289
290 hints.push_back(std::make_shared<shortcut::Hint>(workspaces, "", _(" + Arrow Keys"),290 hints.push_back(std::make_shared<shortcut::Hint>(workspaces, "", _(" + Arrow Keys"),
291 _("Moves focused window to another workspace."),291 _("Moves focused window to another workspace."),
292 shortcut::OptionType::COMPIZ_KEY,292 shortcut::OptionType::COMPIZ_METAKEY,
293 WALL_PLUGIN_NAME,293 WALL_PLUGIN_NAME,
294 WALL_OPTION_LEFT_WINDOW_KEY));294 WALL_OPTION_LEFT_WINDOW_KEY));
295}295}