Separator.st
changeset 2659 3af857eb52fb
parent 1280 8836fc202970
child 3286 91e2e2399b81
--- a/Separator.st	Thu Feb 26 12:30:08 2004 +0100
+++ b/Separator.st	Thu Feb 26 13:19:47 2004 +0100
@@ -11,6 +11,8 @@
 "
 
 
+"{ Package: 'stx:libwidg2' }"
+
 SimpleView subclass:#Separator
 	instanceVariableNames:'orientation'
 	classVariableNames:''
@@ -155,9 +157,7 @@
     "set the orientation to one of #horizontal or #vertical"
 
     orientation := aSymbol.
-    shown ifTrue:[
-        self invalidate
-    ]
+    self invalidate
 
     "Modified: 28.2.1997 / 21:24:38 / cg"
 ! !
@@ -190,9 +190,7 @@
 
 sizeChanged:how
     super sizeChanged:how.
-    shown ifTrue:[
-        self invalidate
-    ]
+    self invalidate
 
     "Created: / 18.4.1998 / 02:36:42 / cg"
     "Modified: / 18.4.1998 / 14:10:05 / cg"
@@ -246,5 +244,5 @@
 !Separator class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/Separator.st,v 1.19 1999-03-25 14:55:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/Separator.st,v 1.20 2004-02-26 12:18:29 cg Exp $'
 ! !