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

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

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

Name: Morphic-mt.1274
Author: mt
Time: 13 August 2016, 1:38:02.926735 pm
UUID: 16e0b9e2-ca0a-5443-a4b5-2953bc5935ad
Ancestors: Morphic-mt.1273

Fix the bug where new windows were occluded by the ones that provided the pop-up menu for a certain action. For example, right click on a text selection, invoking the menu, debug it.

=============== Diff against Morphic-mt.1273 ===============

Item was removed:
- ----- Method: PluggableTextMorph>>yellowButtonActivity: (in category 'menu commands') -----
- yellowButtonActivity: shiftKeyState
- "Called when the shifted-menu's 'more' item is chosen"
- | menu |
- (menu := self getMenu: shiftKeyState)
- ifNotNil: [""
- menu setInvokingView: self.
- menu invokeModal]!

Item was changed:
  ----- Method: TextMorph>>yellowButtonActivity: (in category 'event handling') -----
  yellowButtonActivity: shiftKeyState
  "Invoke the text-editing menu"
  | menu |
  (menu := self getMenu: shiftKeyState)
  ifNotNil: [""
  menu setInvokingView: self editor.
+ self flag: #refactor. "mt: This should work non-modally..."
  menu invokeModal. self changed]!