[squeak-dev] The Trunk: Morphic-ar.186.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-ar.186.mcz

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

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

Name: Morphic-ar.186
Author: ar
Time: 18 September 2009, 10:19:09 am
UUID: d2f211d4-4b5f-b341-8992-c9b5a0c8594d
Ancestors: Morphic-ar.185

Add a class initializer for Face Lift to establish the correct defaults everywhere.

=============== Diff against Morphic-ar.185 ===============

Item was changed:
  ----- Method: ScrollBar class>>initialize (in category 'class initialization') -----
  initialize
  "ScrollBar initialize"
  UpArrow := Form
  extent: 6 @ 3
  fromArray: #(805306368 2013265920 4227858432 )
  offset: 0 @ 0.
  ""
+ self initializeImagesCache.
+
+ "Adjustments for FaceLift"
+ Preferences disable: #scrollBarsNarrow.
+ SystemWindow allSubInstancesDo:[:w| w updatePaneColors].
+ ScrollPane allSubInstancesDo:[:pane| pane hideOrShowScrollBars].
+ !
- self initializeImagesCache!