Merge lp:~pcjc2/notify-osd/fix_dropshadow into lp:notify-osd/lucid

Proposed by Peter Clifton
Status: Merged
Approved by: Mirco Müller
Approved revision: 428
Merged at revision: 430
Proposed branch: lp:~pcjc2/notify-osd/fix_dropshadow
Merge into: lp:notify-osd/lucid
Diff against target: 30 lines (+3/-3)
1 file modified
src/tile.c (+3/-3)
To merge this branch: bzr merge lp:~pcjc2/notify-osd/fix_dropshadow
Reviewer Review Type Date Requested Status
Mirco Müller (community) Approve
Review via email: mp+42804@code.launchpad.net

Description of the change

To post a comment you must log in.
Revision history for this message
Peter Clifton (pcjc2) wrote :

Ping

Revision history for this message
Mirco Müller (macslow) wrote :

Approved! Good catch Peter! Thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/tile.c'
2--- src/tile.c 2009-07-31 11:07:29 +0000
3+++ src/tile.c 2010-12-06 00:24:55 +0000
4@@ -180,7 +180,7 @@
5
6 // top right
7 cairo_matrix_init_scale (&matrix, -1.0f, 1.0f);
8- cairo_matrix_translate (&matrix, -width, 0.0f);
9+ cairo_matrix_translate (&matrix, -1.0f * width, 0.0f);
10 cairo_pattern_set_matrix (pattern, &matrix);
11 cairo_rectangle (cr,
12 width - pad_width,
13@@ -193,7 +193,7 @@
14
15 // bottom right
16 cairo_matrix_init_scale (&matrix, -1.0f, -1.0f);
17- cairo_matrix_translate (&matrix, -width, -height);
18+ cairo_matrix_translate (&matrix, -1.0f * width, -1.0f * height);
19 cairo_pattern_set_matrix (pattern, &matrix);
20 cairo_rectangle (cr,
21 pad_width,
22@@ -206,7 +206,7 @@
23
24 // bottom left
25 cairo_matrix_init_scale (&matrix, 1.0f, -1.0f);
26- cairo_matrix_translate (&matrix, 0.0f, -height);
27+ cairo_matrix_translate (&matrix, 0.0f, -1.0f * height);
28 cairo_pattern_set_matrix (pattern, &matrix);
29 cairo_rectangle (cr,
30 x,

Subscribers

People subscribed via source and target branches

to all changes: