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
=== modified file 'src/tile.c'
--- src/tile.c 2009-07-31 11:07:29 +0000
+++ src/tile.c 2010-12-06 00:24:55 +0000
@@ -180,7 +180,7 @@
180180
181 // top right181 // top right
182 cairo_matrix_init_scale (&matrix, -1.0f, 1.0f);182 cairo_matrix_init_scale (&matrix, -1.0f, 1.0f);
183 cairo_matrix_translate (&matrix, -width, 0.0f);183 cairo_matrix_translate (&matrix, -1.0f * width, 0.0f);
184 cairo_pattern_set_matrix (pattern, &matrix);184 cairo_pattern_set_matrix (pattern, &matrix);
185 cairo_rectangle (cr,185 cairo_rectangle (cr,
186 width - pad_width,186 width - pad_width,
@@ -193,7 +193,7 @@
193193
194 // bottom right194 // bottom right
195 cairo_matrix_init_scale (&matrix, -1.0f, -1.0f);195 cairo_matrix_init_scale (&matrix, -1.0f, -1.0f);
196 cairo_matrix_translate (&matrix, -width, -height);196 cairo_matrix_translate (&matrix, -1.0f * width, -1.0f * height);
197 cairo_pattern_set_matrix (pattern, &matrix);197 cairo_pattern_set_matrix (pattern, &matrix);
198 cairo_rectangle (cr,198 cairo_rectangle (cr,
199 pad_width,199 pad_width,
@@ -206,7 +206,7 @@
206206
207 // bottom left207 // bottom left
208 cairo_matrix_init_scale (&matrix, 1.0f, -1.0f);208 cairo_matrix_init_scale (&matrix, 1.0f, -1.0f);
209 cairo_matrix_translate (&matrix, 0.0f, -height);209 cairo_matrix_translate (&matrix, 0.0f, -1.0f * height);
210 cairo_pattern_set_matrix (pattern, &matrix);210 cairo_pattern_set_matrix (pattern, &matrix);
211 cairo_rectangle (cr,211 cairo_rectangle (cr,
212 x,212 x,

Subscribers

People subscribed via source and target branches

to all changes: