Merge lp:~unity-team/unity/unity.fix-631446 into lp:unity

Proposed by Mirco Müller
Status: Merged
Approved by: Mirco Müller
Approved revision: no longer in the source branch.
Merged at revision: 495
Proposed branch: lp:~unity-team/unity/unity.fix-631446
Merge into: lp:unity
Diff against target: 21 lines (+2/-2)
1 file modified
unity-private/launcher/quicklist-controller.vala (+2/-2)
To merge this branch: bzr merge lp:~unity-team/unity/unity.fix-631446
Reviewer Review Type Date Requested Status
David Barth (community) Approve
Review via email: mp+35263@code.launchpad.net

Description of the change

This fixes the jumping of the quicklist (when expanding from the tooltip) and aligns the anchor-arrow tip with the triangle/arrow indicating the focused application. Fixes LP: #631446.

To post a comment you must log in.
Revision history for this message
David Barth (dbarth) wrote :

+1 the code change is safe. Go ahead and merge it on trunk so that Design can also confirm the change is correct with the daily builds

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'unity-private/launcher/quicklist-controller.vala'
2--- unity-private/launcher/quicklist-controller.vala 2010-08-26 09:31:34 +0000
3+++ unity-private/launcher/quicklist-controller.vala 2010-09-13 10:19:47 +0000
4@@ -186,7 +186,7 @@
5 h = (attached_controller.child as Ctk.Actor).get_height();
6 menu.compute_style_textures ();
7 menu.set_expansion_size_factor (0.0f);
8- menu.set_anchor_position (x + w-6, y + h/2.0f, 0);
9+ menu.set_anchor_position (x + w - 4, y + h/2.0f, 0);
10 }
11 else if (state == QuicklistControllerState.MENU)
12 {
13@@ -255,7 +255,7 @@
14 h = (attached_controller.child as Ctk.Actor).get_height();
15 menu.compute_style_textures ();
16 menu.set_expansion_size_factor (0.0f);
17- menu.set_anchor_position (x + w-6, y + h/2.0f, 0);
18+ menu.set_anchor_position (x + w - 9, y + h/2.0f, 0);
19 menu.animate (Clutter.AnimationMode.LINEAR,
20 100,
21 "expansion-size-factor", 1.0f);