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

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

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

Name: Morphic-mt.1402
Author: mt
Time: 28 March 2018, 4:10:37.386604 pm
UUID: 2c70c8c0-1a1c-ca40-a286-6fd3527295d4
Ancestors: Morphic-mt.1401

Ask UI theme for border color modifier in scroll panes.

=============== Diff against Morphic-mt.1401 ===============

Item was changed:
  ----- Method: ScrollPane>>adoptPaneColor: (in category 'accessing') -----
  adoptPaneColor: paneColor
  super adoptPaneColor: paneColor.
 
  "May not be in the hierarchy at the moment."
  scrollBar adoptPaneColor: paneColor.
  hScrollBar adoptPaneColor: paneColor.
 
+ paneColor ifNotNil: [:pc | self borderColor: ((self userInterfaceTheme borderColorModifier ifNil: [ [:c | c adjustBrightness: -0.3] ]) value: pc)].!
- paneColor ifNotNil: [:c | self borderColor: (c adjustBrightness: -0.3)].!