Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.574.mcz==================== Summary ====================
Name: Tools-mt.574
Author: mt
Time: 2 April 2015, 9:06:20.379 am
UUID: ccf2eb3b-c755-e342-8611-21ea886d0fe9
Ancestors: Tools-mt.573
Added #hMargin to trees. Feature moved from scroll panes to particular tools. Having this, tree selection will ecompass also this margin and no white pixels will be there.
Having this, it is a cosmetic change.
=============== Diff against Tools-mt.573 ===============
Item was added:
+ ----- Method: IndentingListItemMorph>>hMargin (in category 'accessing') -----
+ hMargin
+
+ ^ 3!
Item was changed:
----- Method: IndentingListItemMorph>>toggleRectangle (in category 'private') -----
toggleRectangle
| h |
h := bounds height.
+ ^(bounds left + self hMargin + (12 * indentLevel)) @ bounds top extent: 12@h!
- ^(bounds left + (12 * indentLevel)) @ bounds top extent: 12@h!