~ubuntu-branches/ubuntu/intrepid/compiz-fusion-plugins-main/intrepid-security

« back to all changes in this revision

Viewing changes to src/animation/beamup.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-06-18 12:20:58 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20080618122058-wuc1dyjrso5unho3
Tags: 0.7.7+git20080618-0ubuntu1
New git snpashot

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
    {
211
211
        XRectangle rect;
212
212
 
213
 
        rect.x = ((new / 2) * WIN_W(w));
 
213
        rect.x = WIN_X(w) + ((new / 2) * WIN_W(w));
214
214
        rect.width = (1 - new) * WIN_W(w);
215
 
        rect.y = ((new / 2) * WIN_H(w));
 
215
        rect.y = WIN_Y(w) + ((new / 2) * WIN_H(w));
216
216
        rect.height = (1 - new) * WIN_H(w);
217
217
        XUnionRectWithRegion(&rect, &emptyRegion, aw->drawRegion);
218
218
    }