dont do a super redraw - it clears what has just been drawn
authorClaus Gittinger <cg@exept.de>
Wed, 13 May 2009 19:35:08 +0200
changeset 3694 8a9158be10d7
parent 3693 9d0059e1374b
child 3695 3d24467f66cc
dont do a super redraw - it clears what has just been drawn
DSVLabelView.st
--- a/DSVLabelView.st	Tue May 12 09:44:34 2009 +0200
+++ b/DSVLabelView.st	Wed May 13 19:35:08 2009 +0200
@@ -291,13 +291,11 @@
 redrawX:x y:y width:wArg height:h
     |savClip w|
 
-    (shown) ifFalse:[^ self].
+    shown ifFalse:[^ self].
 
     w := wArg.
     self redrawColumnsInX:x y:y width:w height:h.
 
-    super redrawX:x y:y width:w height:h.
-
 "/    (x + w) >= (width-margin) ifTrue:[
 "/        w := (width-margin) - 1 - x.
 "/    ].
@@ -709,5 +707,5 @@
 !DSVLabelView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVLabelView.st,v 1.65 2009-03-05 11:57:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVLabelView.st,v 1.66 2009-05-13 17:35:08 cg Exp $'
 ! !