[squeak-dev] The Trunk: ToolBuilder-Morphic-mt.327.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jan 26 10:21:24 UTC 2023


Marcel Taeumel uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-mt.327.mcz

==================== Summary ====================

Name: ToolBuilder-Morphic-mt.327
Author: mt
Time: 26 January 2023, 11:21:23.178998 am
UUID: 33c4ffbc-3887-a84e-a903-f262c9010ffd
Ancestors: ToolBuilder-Morphic-mt.326

In tree widgets, avoid filter change for arrow keys.

=============== Diff against ToolBuilder-Morphic-mt.326 ===============

Item was changed:
  ----- Method: PluggableTreeMorph>>basicKeyPressed: (in category 'event handling') -----
  basicKeyPressed: aChar
  
+ 	aChar asciiValue >= 32 ifFalse: [^ false].
  	self updateLastKeystrokes: aChar.
  	
  	model okToChange ifFalse: [^ false].
  	
  	PluggableListMorph filterableLists
  		ifTrue: [self triggerFilterTree]
  		ifFalse: [self selectNextMorphByFilter].
  	
  	^ true!



More information about the Squeak-dev mailing list