The Trunk: Morphic-cmm.1618.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-cmm.1618.mcz

commits-2
Chris Muller uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-cmm.1618.mcz

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

Name: Morphic-cmm.1618
Author: cmm
Time: 16 January 2020, 10:50:39.500247 pm
UUID: 9cbbc4fc-7a83-4f6c-94ca-6ac110f34c1f
Ancestors: Morphic-cmm.1617

When "Mouse over for keyboard focus" is used, release the prior keyboard focus upon restarting the image, so that the Global Command Keys will be honored until the first focus shift.

=============== Diff against Morphic-cmm.1617 ===============

Item was changed:
  ----- Method: MorphicProject>>wakeUpTopWindow (in category 'enter') -----
  wakeUpTopWindow
  "Image has been restarted, and the startUp list has been processed. Perform
  any additional actions needed to restart the user interface."
 
+ SystemWindow wakeUpTopWindowUponStartup.
+ Preferences mouseOverForKeyboardFocus ifTrue:
+ [ "Allow global command keys to work upon re-entry without having to cause a focus change first."
+ ActiveHand releaseKeyboardFocus ]!
- SystemWindow wakeUpTopWindowUponStartup!