Tools__NewSystemBrowserCodeView.st
changeset 8874 050da5c367c7
parent 8819 15a82468c565
child 10023 68c1f1618b7d
--- a/Tools__NewSystemBrowserCodeView.st	Mon Oct 05 14:47:24 2009 +0200
+++ b/Tools__NewSystemBrowserCodeView.st	Mon Oct 05 15:40:13 2009 +0200
@@ -280,14 +280,14 @@
 !NewSystemBrowserCodeView methodsFor:'event handling'!
 
 buttonMotion:button x:x y:y 
-    ^ (button == 0 and:[ self sensor ctrlDown ]) 
+    (button == 0 and:[ self sensor ctrlDown ]) 
         ifTrue:[
-            self
+            ^ self
                 highlightNodeAtX:x y:y;
                 redraw
         ]
         ifFalse:[
-            super 
+            ^ super 
                 buttonMotion:button
                 x:x
                 y:y
@@ -903,11 +903,11 @@
 !NewSystemBrowserCodeView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowserCodeView.st,v 1.4 2009-09-30 12:10:06 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowserCodeView.st,v 1.5 2009-10-05 13:40:13 fm Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowserCodeView.st,v 1.4 2009-09-30 12:10:06 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowserCodeView.st,v 1.5 2009-10-05 13:40:13 fm Exp $'
 !
 
 version_CVS_jvrany