Tools__CodeViewService.st
changeset 12861 3106975dc3e1
parent 11182 90f2879a3926
child 12900 5a645e7b5961
child 13170 c9b815af5777
--- a/Tools__CodeViewService.st	Thu Jun 06 12:56:17 2013 +0200
+++ b/Tools__CodeViewService.st	Thu Jun 06 14:03:57 2013 +0200
@@ -237,7 +237,6 @@
 !CodeViewService methodsFor:'event handling'!
 
 buttonMotion: button x:x y:y in: view
-
     "Handles an event in given view (a subview of codeView).
      If the method returns true, it has eaten the event and it will not be processed
      by the view."
@@ -250,7 +249,6 @@
 !
 
 buttonPress: button x:x y:y in: view
-
     "Handles an event in given view (a subview of codeView).
      If the method returns true, it has eaten the event and it will not be processed
      by the view."
@@ -262,8 +260,15 @@
     "Modified (comment): / 18-08-2011 / 15:57:36 / cg"
 !
 
+buttonRelease: button x:x y:y in: view
+    "Handles an event in given view (a subview of codeView).
+     If the method returns true, it has eaten the event and it will not be processed
+     by the view."
+
+    ^false
+!
+
 keyPress:key x:x y:y in: view
-
     "Handles an event in given view (a subview of codeView).
      If the method returns true, it has eaten the event and it will not be processed
      by the view."
@@ -276,7 +281,6 @@
 !
 
 keyRelease: key x: x y: y in: view
-
     "Handles an event in given view (a subview of codeView).
      If the method returns true, it has eaten the event and it will not be processed
      by the view."
@@ -390,9 +394,10 @@
 !CodeViewService class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.8 2012-01-24 12:56:23 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.9 2013-06-06 12:03:57 cg Exp $'
 !
 
 version_SVN
-    ^ '§Id: Tools__CodeViewService.st 7790 2011-06-17 13:33:22Z vranyj1 §'
+    ^ '$Id: Tools__CodeViewService.st,v 1.9 2013-06-06 12:03:57 cg Exp $'
 ! !
+