Marcel Taeumel uploaded a new version of SUnitGUI to project The Trunk:
http://source.squeak.org/trunk/SUnitGUI-mt.62.mcz==================== Summary ====================
Name: SUnitGUI-mt.62
Author: mt
Time: 10 May 2015, 12:18:33.708 pm
UUID: 23278a70-3219-2542-bdb0-1e42b35989a6
Ancestors: SUnitGUI-topa.61
Upper spacing of button bar in test runner fixed by removing some magic numbers.
=============== Diff against SUnitGUI-topa.61 ===============
Item was changed:
----- Method: TestRunner>>categoriesFrame (in category 'building') -----
categoriesFrame
^LayoutFrame new
leftFraction: 0 offset: 0;
topFraction: 0 offset: 0;
rightFraction: 0.25 offset: 0;
+ bottomFraction: 1 offset: self buttonHeight negated!
- bottomFraction: 1 offset: self buttonHeight negated + 4!
Item was changed:
----- Method: TestRunner>>classesFrame (in category 'building') -----
classesFrame
^LayoutFrame new
leftFraction: 0.25 offset: 0;
topFraction: 0 offset: 0;
rightFraction: 0.5 offset: 0;
+ bottomFraction: 1 offset: self buttonHeight negated!
- bottomFraction: 1 offset: self buttonHeight negated + 4!
Item was changed:
----- Method: TestRunner>>errorListFrame (in category 'building') -----
errorListFrame
^LayoutFrame new
leftFraction: 0.5 offset: 0;
topFraction: 0.5 offset: 0;
rightFraction: 1 offset: 0;
+ bottomFraction: 1 offset: self buttonHeight negated!
- bottomFraction: 1 offset: self buttonHeight negated + 4!