*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Sat, 02 Nov 2002 19:31:49 +0100
changeset 2349 4cf7b4f1345e
parent 2348 6a671b60f274
child 2350 0f9ca9ecf77a
*** empty log message ***
ImageEditView.st
--- a/ImageEditView.st	Thu Oct 31 22:49:29 2002 +0100
+++ b/ImageEditView.st	Sat Nov 02 19:31:49 2002 +0100
@@ -946,15 +946,10 @@
         (clr := self selectedColor) notNil ifTrue:[
             self updateActivity:'Flood filling - press CTRL-y to abort ...'.
             [
-                filledPoints := image floodFillAt: aPoint//magnification withColor:clr.
+                image floodFillAt: aPoint//magnification withColor:clr.
                 image restored.
 
-                "/ animation effect ...    
-                filledPoints size < 300 ifTrue: [
-                    filledPoints do: [:p| self redraw: ((p * magnification extent: magnification) expandedBy: 1)]
-                ] ifFalse: [
-                    self invalidate
-                ].
+                self invalidate.
 
 "/                "/ cg: what a kludge - please change to use a valueHolder,
 "/                "/ which gets the information ...
@@ -2241,7 +2236,7 @@
 !ImageEditView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ImageEditView.st,v 1.172 2002-10-29 09:43:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ImageEditView.st,v 1.173 2002-11-02 18:31:49 cg Exp $'
 ! !
 
 ImageEditView initialize!