Tools__NewSystemBrowserCodeView.st
changeset 17241 240611c35ab7
parent 16932 ee4386e43274
child 17304 3eea1002b141
child 18684 a9b6ee1c39ae
--- a/Tools__NewSystemBrowserCodeView.st	Thu Jan 19 16:58:46 2017 +0100
+++ b/Tools__NewSystemBrowserCodeView.st	Sat Jan 21 04:05:15 2017 +0100
@@ -313,18 +313,12 @@
 !NewSystemBrowserCodeView methodsFor:'event handling'!
 
 buttonMotion:button x:x y:y 
-    (button == 0 and:[ self sensor ctrlDown ]) 
-        ifTrue:[
-            ^ self
-                highlightNodeAtX:x y:y;
-                redraw
-        ]
-        ifFalse:[
-            ^ super 
-                buttonMotion:button
-                x:x
-                y:y
-        ]
+    (button == 0 and:[ self sensor ctrlDown ]) ifFalse:[
+        ^ super buttonMotion:button x:x y:y
+    ].    
+    self
+        highlightNodeAtX:x y:y;
+        redraw.
 
     "Created: / 25-12-2007 / 21:53:50 / janfrog"
     "Modified: / 19-02-2008 / 09:15:09 / janfrog"