RadioButtonGroup.st
changeset 164 5ab02ff0d9ae
parent 163 18d87bf16389
child 174 d80a6cc3f9b2
--- a/RadioButtonGroup.st	Thu Sep 21 13:54:14 1995 +0200
+++ b/RadioButtonGroup.st	Mon Oct 23 21:07:01 1995 +0100
@@ -23,7 +23,7 @@
 COPYRIGHT (c) 1991 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libwidg/RadioButtonGroup.st,v 1.14 1995-09-21 11:54:14 claus Exp $
+$Header: /cvs/stx/stx/libwidg/RadioButtonGroup.st,v 1.15 1995-10-23 20:06:41 cg Exp $
 '!
 
 !RadioButtonGroup class methodsFor:'documentation '!
@@ -44,7 +44,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libwidg/RadioButtonGroup.st,v 1.14 1995-09-21 11:54:14 claus Exp $
+$Header: /cvs/stx/stx/libwidg/RadioButtonGroup.st,v 1.15 1995-10-23 20:06:41 cg Exp $
 "
 !
 
@@ -254,7 +254,7 @@
     |newValue|
 
     self keysAndValuesDo:[:index :aButton |
-	(aButton == aToggle) ifFalse:[
+	(aToggle isSubViewOf:aButton) ifFalse:[
 	    aButton isOn ifTrue:[
 		aButton turnOff
 	    ]
@@ -265,5 +265,5 @@
     aToggle turnOn.
     valueChannel value:newValue
 
-    "Modified: 20.9.1995 / 16:08:16 / claus"
+    "Modified: 21.9.1995 / 13:42:06 / claus"
 ! !