The Trunk: Morphic-ar.418.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-ar.418.mcz

commits-2
Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.418.mcz

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

Name: Morphic-ar.418
Author: ar
Time: 7 April 2010, 9:32:30.398 pm
UUID: ede2986c-093d-2945-a361-ea10c53eb269
Ancestors: Morphic-cmm.417

The quit dialog should not be hidden in some corner of the screen even if it's closer to the mouse position. Fix it to be front and center please.

=============== Diff against Morphic-cmm.417 ===============

Item was changed:
  ----- Method: TheWorldMenu>>quitSession (in category 'commands') -----
  quitSession
 
  SmalltalkImage current
+ snapshot: (UserDialogBoxMorph
+ confirm: 'Save changes before quitting?' translated
+ orCancel: [^ self]
+ at: World center)
- snapshot: (self confirm: 'Save changes before quitting?' translated orCancel: [^ self])
  andQuit: true!

Item was changed:
  ----- Method: TheWorldMainDockingBar>>quitSqueak (in category 'menu actions') -----
  quitSqueak
 
  ^SmalltalkImage current
  snapshot: (
+ UserDialogBoxMorph
- self
  confirm: 'Save changes before quitting?' translated
+ orCancel: [ ^self ]
+ at: World center)
- orCancel: [ ^self ])
  andQuit: true
 
  !