diff options
author | Dennis Kasprzyk <onestone@opencompositing.org> | 2007-07-09 21:51:12 +0200 |
---|---|---|
committer | Dennis Kasprzyk <onestone@opencompositing.org> | 2007-07-09 21:51:12 +0200 |
commit | 793977a5fcb3bfde7e471fd8c41a2a500b19995d (patch) | |
tree | b529a742b87be9b4802dfffb7cdca79584bdc5d7 | |
parent | d55f5aa642234884a1e947ebb1195560d9890d65 (diff) | |
download | atlantis-793977a5fcb3bfde7e471fd8c41a2a500b19995d.tar.gz atlantis-793977a5fcb3bfde7e471fd8c41a2a500b19995d.tar.bz2 |
Multimonitor rotation fix
-rw-r--r-- | atlantis.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -279,7 +279,7 @@ static void atlantisPaintInside (CompScreen *s, ScreenPaintAttrib sA = *sAttrib; CompTransform mT = *transform; - sA.yRotate += (360.0f / size) * (cs->xRotations - s->x); + sA.yRotate += (360.0f / size) * (cs->xRotations - (s->x * cs->nOutput)); (*s->applyScreenTransform) (s, &sA, output, &mT); |