The Trunk: Monticello-mt.647.mcz

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

The Trunk: Monticello-mt.647.mcz

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

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

Name: Monticello-mt.647
Author: mt
Time: 17 August 2016, 10:04:54.221 pm
UUID: 09777244-fd6a-5f4b-8490-39b980d14dc8
Ancestors: Monticello-mt.646

Fixes regression typo.

=============== Diff against Monticello-mt.646 ===============

Item was changed:
  ----- Method: MCSaveVersionDialog>>list (in category 'accessing') -----
  list
    ^ self items collect: [:each |
          (self reverts includes: each)
              ifFalse: [(self ignore includes: each)
                          ifFalse: [each summary]
                          ifTrue: [Text
  string: '( ', each summary, ' )'
  attributes: (self userInterfaceTheme ignoredOperationAttributes ifNil: [{TextColor color: Color gray}])]]
              ifTrue: [Text
  string: '( ', each summary, ' )'
+ attributes: (self userInterfaceTheme revertedOperationAttributes ifNil: [ {TextEmphasis struckOut} ]) ]]!
- attribute: (self userInterfaceTheme revertedOperationAttributes ifNil: [ {TextEmphasis struckOut} ]) ]]!