The Trunk: MorphicExtras-pre.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: MorphicExtras-pre.243.mcz

commits-2
Patrick Rein uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-pre.243.mcz

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

Name: MorphicExtras-pre.243
Author: pre
Time: 10 July 2018, 3:31:38.952363 pm
UUID: 38e65aea-ec4c-f34b-8c99-417bc929e15c
Ancestors: MorphicExtras-pre.242

Adds theme properties to the tool

=============== Diff against MorphicExtras-pre.242 ===============

Item was added:
+ ----- Method: ObjectsTool class>>themeProperties (in category 'preferences') -----
+ themeProperties
+
+ ^ super themeProperties, {
+ { #borderColor. 'Colors'. 'Color of the tools'' border.' }.
+ { #borderWidth. 'Borders'. 'Width of the tools'' border.' }.
+ { #borderStyle. 'Borders'. 'Whether to use a plain border, inset, or outset.' }.
+ { #color. 'Colors'. 'Background color of the tool.' }.
+ { #textColor. 'Colors'. 'Color for the category button labels.' }.
+ { #selectionTextColor. 'Colors'. 'Color used for the button of the selected category.' }.
+ }!