SmallSense__EditService.st
changeset 458 de41bf2025c0
parent 456 2837a6da2a89
child 1027 13a835555b48
--- a/SmallSense__EditService.st	Sat May 02 23:00:27 2015 +0200
+++ b/SmallSense__EditService.st	Mon May 04 00:18:45 2015 +0200
@@ -189,15 +189,12 @@
      If the method returns true, the event will not be processed
      by the view."
 
-    UserPreferences current smallSenseElectricEditSupportEnabled ifTrue:[
-        ^ support notNil 
-            ifTrue:[support keyPress: key x:x y:y in: view]
-            ifFalse:[false]
-    ].
-    ^ false
+    ^ support notNil 
+        ifTrue:[support keyPress: key x:x y:y in: view]
+        ifFalse:[false]
 
     "Created: / 07-03-2010 / 09:36:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 02-05-2015 / 21:53:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 04-05-2015 / 00:00:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !EditService methodsFor:'registering'!