Tools__NewSystemBrowserCodeView.st
branchjv
changeset 17304 3eea1002b141
parent 17134 c4cce8b7a95d
parent 17241 240611c35ab7
--- a/Tools__NewSystemBrowserCodeView.st	Fri Jan 20 20:18:19 2017 +0000
+++ b/Tools__NewSystemBrowserCodeView.st	Wed Jan 25 19:02:59 2017 +0000
@@ -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"