Merge lp:~loic.molinari/unity/unity-fix-756951 into lp:unity

Proposed by Loïc Molinari
Status: Merged
Approved by: Neil J. Patel
Approved revision: no longer in the source branch.
Merged at revision: 1156
Proposed branch: lp:~loic.molinari/unity/unity-fix-756951
Merge into: lp:unity
Diff against target: 12 lines (+1/-1)
1 file modified
src/unityshell.cpp (+1/-1)
To merge this branch: bzr merge lp:~loic.molinari/unity/unity-fix-756951
Reviewer Review Type Date Requested Status
Neil J. Patel (community) Approve
Review via email: mp+58159@code.launchpad.net

Description of the change

That branch does a relayout right after launcher initialization in order to have a first rendering of the launcher at the right position.

To post a comment you must log in.
Revision history for this message
Neil J. Patel (njpatel) wrote :

Approved.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/unityshell.cpp'
2--- src/unityshell.cpp 2011-04-14 16:16:02 +0000
3+++ src/unityshell.cpp 2011-04-18 16:47:24 +0000
4@@ -1070,7 +1070,7 @@
5 self->launcher->SetHideMode (Launcher::LAUNCHER_HIDE_DODGE_WINDOWS);
6 self->launcher->SetLaunchAnimation (Launcher::LAUNCH_ANIMATION_PULSE);
7 self->launcher->SetUrgentAnimation (Launcher::URGENT_ANIMATION_WIGGLE);
8- self->ScheduleRelayout (2000);
9+ self->ScheduleRelayout (0);
10
11 END_FUNCTION ();
12 }