Merge lp:~unity-team/unity/workspace-switcher-focus-fix into lp:unity

Proposed by Jason Smith
Status: Merged
Approved by: Mirco Müller
Approved revision: no longer in the source branch.
Merged at revision: 461
Proposed branch: lp:~unity-team/unity/workspace-switcher-focus-fix
Merge into: lp:unity
Diff against target: 12 lines (+2/-0)
1 file modified
targets/mutter/spaces-manager.vala (+2/-0)
To merge this branch: bzr merge lp:~unity-team/unity/workspace-switcher-focus-fix
Reviewer Review Type Date Requested Status
Mirco Müller (community) Approve
Review via email: mp+33741@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Mirco Müller (macslow) wrote :

Approved.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'targets/mutter/spaces-manager.vala'
2--- targets/mutter/spaces-manager.vala 2010-08-21 11:51:34 +0000
3+++ targets/mutter/spaces-manager.vala 2010-08-26 07:16:44 +0000
4@@ -360,6 +360,8 @@
5 time_ = Mutter.MetaDisplay.get_current_time (Mutter.MetaWindow.get_display (meta));
6 Mutter.MetaWorkspace.activate (Mutter.MetaWindow.get_workspace (meta), time_);
7 Mutter.MetaWindow.activate (meta, time_);
8+
9+ GLib.Timeout.add (250, () => { Mutter.MetaWindow.activate (meta, time_); return false; });
10
11 return false;
12 });