Merge lp:~unity-team/unity/disable-dnd-input-focus into lp:unity

Proposed by Jason Smith
Status: Merged
Approved by: Neil J. Patel
Approved revision: no longer in the source branch.
Merged at revision: 534
Proposed branch: lp:~unity-team/unity/disable-dnd-input-focus
Merge into: lp:unity
Diff against target: 11 lines (+1/-1)
1 file modified
targets/mutter/plugin.vala (+1/-1)
To merge this branch: bzr merge lp:~unity-team/unity/disable-dnd-input-focus
Reviewer Review Type Date Requested Status
Neil J. Patel Pending
Review via email: mp+36252@code.launchpad.net

Description of the change

Disables input focus. Initial observation does not seem to cause issues with DND. Secondary test required before merge.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'targets/mutter/plugin.vala'
2--- targets/mutter/plugin.vala 2010-09-16 17:37:19 +0000
3+++ targets/mutter/plugin.vala 2010-09-22 04:38:41 +0000
4@@ -34,7 +34,7 @@
5
6 construct
7 {
8- ;
9+ this.set_accept_focus (false);
10 }
11 }
12