Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.721.mcz==================== Summary ====================
Name: Tools-mt.721
Author: mt
Time: 24 August 2016, 9:27:56.387086 am
UUID: d3d423cf-f384-e549-85a2-f457c5662693
Ancestors: Tools-mt.720
Reduce use of deprecated API.
=============== Diff against Tools-mt.720 ===============
Item was changed:
----- Method: FileChooser>>createDialogBoxMorphicView (in category 'ui creation') -----
createDialogBoxMorphicView
| m |
m := MorphicModel new
layoutPolicy: ProportionalLayout new;
+ color: (Color r: 0.9 g: 0.9 b: 0.9);
+ borderColor: Color gray;
+ borderWidth: 1;
- color: Preferences menuColor;
- borderColor: Preferences menuBorderColor;
- borderWidth: Preferences menuBorderWidth;
layoutInset: 0;
extent: 600@400.
self setMorphicView: m.
^m!
Item was changed:
----- Method: FileChooser>>initializeAsDialogBox (in category 'initialization') -----
initializeAsDialogBox
self initializeBasicParameters.
self createDialogBoxUI.
self morphicView
useRoundedCorners;
+ color: (Color r: 0.9 g: 0.9 b: 0.9);
+ adoptPaneColor: (Color r: 0.6 g: 0.7 b: 1).
- color: Preferences menuColor;
- adoptPaneColor: Preferences menuLineColor.
self
+ setCaptionColor: Color transparent;
+ setButtonColor: (Color r: 0.9 g: 0.9 b: 0.9).
+ !
- setCaptionColor: Preferences menuTitleColor;
- setButtonColor: Preferences menuColor.!