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
=== modified file 'src/unityshell.cpp'
--- src/unityshell.cpp 2011-04-14 16:16:02 +0000
+++ src/unityshell.cpp 2011-04-18 16:47:24 +0000
@@ -1070,7 +1070,7 @@
1070 self->launcher->SetHideMode (Launcher::LAUNCHER_HIDE_DODGE_WINDOWS);1070 self->launcher->SetHideMode (Launcher::LAUNCHER_HIDE_DODGE_WINDOWS);
1071 self->launcher->SetLaunchAnimation (Launcher::LAUNCH_ANIMATION_PULSE);1071 self->launcher->SetLaunchAnimation (Launcher::LAUNCH_ANIMATION_PULSE);
1072 self->launcher->SetUrgentAnimation (Launcher::URGENT_ANIMATION_WIGGLE);1072 self->launcher->SetUrgentAnimation (Launcher::URGENT_ANIMATION_WIGGLE);
1073 self->ScheduleRelayout (2000);1073 self->ScheduleRelayout (0);
10741074
1075 END_FUNCTION ();1075 END_FUNCTION ();
1076}1076}