[squeak-dev] The Trunk: Morphic-ct.1784.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 11 12:54:50 UTC 2023


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

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

Name: Morphic-ct.1784
Author: ct
Time: 4 October 2021, 2:22:53.472931 pm
UUID: 802f4119-f7af-3741-8b7c-d3a99d3a41f4
Ancestors: Morphic-ul.1780

Honor new instance variable of KeyboardEvent during comparison.

=============== Diff against Morphic-ul.1780 ===============

Item was changed:
  ----- Method: KeyboardEvent>>= (in category 'comparing') -----
  = aMorphicEvent
  	super = aMorphicEvent ifFalse:[^false].
  	buttons = aMorphicEvent buttons ifFalse: [^ false].
  	keyValue = aMorphicEvent keyValue ifFalse: [^ false].
+ 	keyCode = aMorphicEvent keyCode ifFalse: [^ false].
+ 	^ true!
- 	^ true
- !



More information about the Squeak-dev mailing list