[squeak-dev] The Trunk: Morphic-laza.163.mcz

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

[squeak-dev] The Trunk: Morphic-laza.163.mcz

commits-2
Alexander Lazarević uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-laza.163.mcz

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

Name: Morphic-laza.163
Author: laza
Time: 31 August 2009, 1:21:17 am
UUID: 51d4d2f4-1e4d-c649-8f0d-7f6938c8c38b
Ancestors: Morphic-ar.162

This makes the keyboard shortcut for the DualChangeSorter <alt><shift>C work again

=============== Diff against Morphic-ar.162 ===============

Item was changed:
  ----- Method: PasteUpMorph>>findAWindowSatisfying:orMakeOneUsing: (in category 'world menu') -----
  findAWindowSatisfying: qualifyingBlock orMakeOneUsing: makeBlock
  "Locate a window satisfying a block, open it, and bring it to the front.  Create one if necessary, by using the makeBlock"
 
  | aWindow |
  submorphs do:
  [:aMorph |
  (((aWindow := aMorph renderedMorph) isSystemWindow)
  and: [qualifyingBlock value: aWindow])
  ifTrue:
  [aWindow isCollapsed ifTrue: [aWindow expand].
  aWindow activateAndForceLabelToShow.
  ^self]].
  "None found, so create one"
+ makeBlock value!
- makeBlock value openInWorld!

Item was changed:
  ----- Method: PasteUpMorph>>findAFileList: (in category 'world menu') -----
  findAFileList: evt
  "Locate a file list, open it, and bring it to the front.
  Create one if necessary, respecting the Preference."
 
  self
  findAWindowSatisfying: [:aWindow | aWindow model isKindOf: FileList]
+ orMakeOneUsing: [FileList2 prototypicalToolWindow openInWorld]
- orMakeOneUsing: [FileList2 prototypicalToolWindow]
  !