DeviceGraphicsContext.st
changeset 4657 2a372915f9e3
parent 4521 6f065906e740
child 4664 02d160974029
--- a/DeviceGraphicsContext.st	Fri Oct 20 12:15:40 2006 +0200
+++ b/DeviceGraphicsContext.st	Fri Oct 20 13:24:16 2006 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libview' }"
 
 GraphicsContext subclass:#DeviceGraphicsContext
@@ -355,12 +354,13 @@
     (rect := clipRect) isNil ifTrue:[
         rect := 0@0 extent:(self extent).
     ].
-    transformation notNil ifTrue:[
-        rect := transformation applyInverseTo:rect.
-    ].
+"/ nope - it is already kept in logical coordinates
+"/    transformation notNil ifTrue:[
+"/        rect := transformation applyInverseTo:rect.
+"/    ].
     ^ rect
 
-    "Modified: 10.4.1996 / 14:32:22 / cg"
+    "Modified: / 20-10-2006 / 13:24:21 / cg"
 !
 
 clippedByChildren:aBoolean
@@ -3880,7 +3880,7 @@
 !DeviceGraphicsContext class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/DeviceGraphicsContext.st,v 1.109 2006-04-07 16:02:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/DeviceGraphicsContext.st,v 1.110 2006-10-20 11:24:16 cg Exp $'
 ! !
 
 DeviceGraphicsContext initialize!