The Trunk: Morphic-mt.1244.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-mt.1244.mcz

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

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

Name: Morphic-mt.1244
Author: mt
Time: 8 August 2016, 11:54:34.787593 am
UUID: 1a99adda-e47a-1a4e-9fec-9c6c7fb38791
Ancestors: Morphic-mt.1243

Fix keyboard focus indication in pop-up menus with respect to usual keyboard focus indication in the system and UI themes.

=============== Diff against Morphic-mt.1243 ===============

Item was removed:
- ----- Method: MenuMorph>>drawKeyboardFocusIndicationOn: (in category 'drawing') -----
- drawKeyboardFocusIndicationOn: aCanvas
- "Draw the menu. Add keyboard-focus feedback if appropriate"
-
- (self rootMenu hasProperty: #hasUsedKeyboard)
- ifTrue: [
- aCanvas
- frameRectangle: self innerBounds
- width: Preferences menuBorderWidth
- color: Preferences keyboardFocusColor].!

Item was changed:
  ----- Method: MenuMorph>>indicateKeyboardFocus (in category 'testing') -----
  indicateKeyboardFocus
 
+ ^ self rootMenu hasProperty: #hasUsedKeyboard!
- ^ true!