From bae12818ee0d529ffe24886d9b5d66b869211d00 Mon Sep 17 00:00:00 2001 From: adam Date: Mon, 24 Oct 2005 02:30:14 +0000 Subject: [PATCH] fixed incredibly stupid bug that was wacking out the transform every time we dirtied darcs-hash:20051024023014-5007d-69499de3e64921f651cc9675ea8fbd1a9805f62d.gz --- src/org/ibex/core/Box.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/ibex/core/Box.java b/src/org/ibex/core/Box.java index ffec434..09b43ae 100644 --- a/src/org/ibex/core/Box.java +++ b/src/org/ibex/core/Box.java @@ -106,7 +106,7 @@ public final class Box extends JS.Obj implements Callable, Mesh.Chain { public void dirty() { if (path==null) dirty(0, 0, contentwidth, contentheight); else dirty(path); } public void dirty(int x, int y, int w, int h) { } public void dirty(Path p) { - Affine a = transform; + Affine a = transform.copy(); for(Box cur = this; cur != null; cur = cur.parent) a.premultiply(cur.transform); long hbounds = p.horizontalBounds(a); long vbounds = p.verticalBounds(a); -- 1.7.10.4