The Trunk: ToolBuilder-Morphic-mt.178.mcz

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

The Trunk: ToolBuilder-Morphic-mt.178.mcz

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

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

Name: ToolBuilder-Morphic-mt.178
Author: mt
Time: 3 August 2016, 3:07:56.004992 pm
UUID: d001b249-3b74-334f-a7d8-8b799779efe5
Ancestors: ToolBuilder-Morphic-mt.177

For disabled buttons, still draw a border to make them still look like buttons, not like labels.

=============== Diff against ToolBuilder-Morphic-mt.177 ===============

Item was changed:
  ----- Method: PluggableButtonMorphPlus>>updateFillStylePressing:hovering: (in category 'initialize-release') -----
  updateFillStylePressing: isPressing hovering: isHovering
 
  enabled ifFalse: [
  self color: (disabledColor ifNil: [Color transparent]).
+ self borderStyle color: disabledTextColor.
- self borderStyle color: Color transparent.
  ^ self].
 
  super updateFillStylePressing: isPressing hovering: isHovering.!