[squeak-dev] The Inbox: Morphic-ct.1784.mcz
commits at source.squeak.org
commits at source.squeak.org
Mon Oct 4 12:23:02 UTC 2021
A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/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
|