Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.612.mcz==================== Summary ====================
Name: Tools-mt.612
Author: mt
Time: 30 April 2015, 12:05:16.513 pm
UUID: 4ffff371-c71a-654a-97a3-fb478e179170
Ancestors: Tools-mt.611
Minor cosmetic fix regarding space between code pane and annotation pane in code holders. It now correctly corresponds to the (surrounding) panel's #cellInset.
=============== Diff against Tools-mt.611 ===============
Item was changed:
----- Method: CodeHolder>>annotationFrame (in category 'toolbuilder') -----
annotationFrame
^LayoutFrame new
leftFraction: 0 offset: 0;
+ topFraction: 1 offset: self annotationPaneHeight negated;
- topFraction: 1 offset: self annotationPaneHeight negated - 1;
rightFraction: 1 offset: 0;
bottomFraction: 1 offset: 0!
Item was changed:
----- Method: CodeHolder>>annotationPaneHeight (in category 'toolbuilder') -----
annotationPaneHeight
+ ^ (Preferences standardCodeFont height * 3/2) rounded!
- ^Preferences standardCodeFont height * 3/2!