The Trunk: ST80-mt.243.mcz

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

The Trunk: ST80-mt.243.mcz

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

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

Name: ST80-mt.243
Author: mt
Time: 20 November 2019, 2:46:19.127662 pm
UUID: 3c87c655-04dd-2147-aed0-fc1cd07ccc91
Ancestors: ST80-mt.242

Removes some missed deprecation sends.

=============== Diff against ST80-mt.242 ===============

Item was changed:
  ----- Method: ProjectController>>redButtonActivity (in category 'control activity') -----
  redButtonActivity
  | index |
  view isCollapsed ifTrue: [^ super redButtonActivity].
  (view insetDisplayBox containsPoint: Sensor cursorPoint)
  ifFalse: [^ super redButtonActivity].
  index := (UIManager default chooseFrom: #('enter' 'jump to project...') lines: #()).
  index = 0 ifTrue: [^ self].
 
  "save size on enter for thumbnail on exit"
+ model viewSize: view insetDisplayBox extent.
- model setViewSize: view insetDisplayBox extent.
  index = 1 ifTrue: [^ model enter: false revert: false saveForRevert: false].
  index = 2 ifTrue: [Project current jumpToProject. ^ self].
  !