Merge lp:~tigrangab/slingshot/paste into lp:~elementary-pantheon/slingshot/trunk

Proposed by Tigran Gabrielyan
Status: Merged
Approved by: Cody Garver
Approved revision: 379
Merged at revision: 378
Proposed branch: lp:~tigrangab/slingshot/paste
Merge into: lp:~elementary-pantheon/slingshot/trunk
Diff against target: 20 lines (+9/-1)
1 file modified
src/SlingshotView.vala (+9/-1)
To merge this branch: bzr merge lp:~tigrangab/slingshot/paste
Reviewer Review Type Date Requested Status
Cody Garver (community) Approve
elementary Pantheon team Pending
Review via email: mp+183966@code.launchpad.net

Commit message

Accept ctrl+shift+v as paste in search Edit to fix bug #1084887.

To post a comment you must log in.
Revision history for this message
Cody Garver (codygarver) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/SlingshotView.vala'
2--- src/SlingshotView.vala 2013-08-16 15:14:21 +0000
3+++ src/SlingshotView.vala 2013-09-04 19:47:34 +0000
4@@ -520,7 +520,15 @@
5 top_left_focus ();
6 }
7 break;
8-
9+
10+ case "v":
11+ case "V":
12+ if ((event.state & (Gdk.ModifierType.CONTROL_MASK | Gdk.ModifierType.SHIFT_MASK)) != 0) {
13+ searchbar.paste_clipboard ();
14+ }
15+
16+ break;
17+
18 default:
19 if (!searchbar.has_focus) {
20 searchbar.grab_focus ();

Subscribers

People subscribed via source and target branches