Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Preferences cmdGesturesEnabled
Last updated at 4:52 pm UTC on 26 August 2016
 Preferences cmdGesturesEnabled
is a hard coded preference set to true.

It is used in the
 Morph>>handleMouseDown: anEvent
method

(anEvent controlKeyPressed
			and: [anEvent blueButtonChanged not
				and: [Preferences cmdGesturesEnabled]])
		ifTrue: [^ self invokeMetaMenu: anEvent].


You may add a #handleMouseDown: method to your own subclass. If you add a copy #handleMouseDown: of class Morph with
 Preferences cmdGesturesEnabled
replaced with
 false
you will not get halos on your morph.

Another option is to use the #lock method.



Note:
 Preferences disableProgrammerFacilities
calls
 Preferences compileAccessorForPreferenceNamed: #cmdGesturesEnabled value: false.

See also