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

commits at source.squeak.org commits at source.squeak.org
Mon Dec 6 18:01:54 UTC 2021


Christoph Thiede uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ct.1787.mcz

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

Name: Morphic-ct.1787
Author: ct
Time: 18 October 2021, 6:00:19.065559 pm
UUID: 5a7cd867-c35a-bf4a-9f21-4f51eae8b612
Ancestors: Morphic-ul.1780

Don't raise an error when pressing a key while focusing an empty scroll bar (such as the main panel in a freshly opened preference browser).

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

Item was changed:
  ----- Method: ScrollPane>>keyStroke: (in category 'event handling') -----
  keyStroke: evt
  	"If pane is not empty, pass the event to the last submorph,
  	assuming it is the most appropriate recipient (!!)"
  
+ 	scroller hasSubmorphs ifTrue:
+ 		[scroller lastSubmorph keyStroke: evt].!
- 	scroller submorphs last keyStroke: evt!



More information about the Squeak-dev mailing list