The Trunk: EToys-mt.377.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-mt.377.mcz

commits-2
Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.377.mcz

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

Name: EToys-mt.377
Author: mt
Time: 14 February 2020, 3:10:29.168667 pm
UUID: 0e8af7ee-621d-c44c-b2b1-af55a459a01e
Ancestors: EToys-dtl.376

Clean up some standard preferences for Etoys. Scroll bars are round again. Not sure about showing horizontal scroll bars though ...

=============== Diff against EToys-dtl.376 ===============

Item was changed:
  ----- Method: ReleaseBuilderSqueakland class>>setPreferences (in category 'scripts') -----
  setPreferences
 
  super setPreferences.
 
  [ "Reset all preferences to their default value but ensure that all control and alt keys stay duplicated."
  Preferences cambridge.
  Preferences allPreferences do: [:each |
  each defaultValue: each preferenceValue].
  Preferences
  enable: #duplicateAllControlAndAltKeys.
  ] valueSupplyingAnswer: true.
 
  Preferences
  disable: #alternativeWindowBoxesLook;
  enable: #magicHalos;
  enable: #mouseOverHalos;
- enable: #roundedScrollBarLook;
- enable: #roundedWindowCorners;
  enable: #showAdvancedNavigatorButtons;
  disable: #honorDesktopCmdKeys;
- disable: #warnIfNoChangesFile;
- disable: #warnIfNoSourcesFile;
  enable: #unlimitedPaintArea;
  enable: #fastDragWindowForMorphic;
  enable: #noviceMode;
  disable: #generalizedYellowButtonMenu;
- disable: #showAdvancedNavigatorButtons;
  disable: #signProjectFiles;
+ enable: #alwaysShowHScrollBar;
+ enable: #alwaysShowVScrollBar.
+
+ "Rounded corners."
- disable: #warnIfNoChangesFile;
- disable: #warnIfChangesFileReadOnly;
- disable: #warnIfNoSourcesFile.
  Morph preferredCornerRadius: 8.
  PluggableButtonMorph roundedButtonCorners: true.
+ DialogWindow roundedDialogCorners: true.
- FillInTheBlankMorph roundedDialogCorners: true.
  SystemWindow roundedWindowCorners: true.
+ ScrollBar roundedScrollBarLook: true.
+
  Cursor useBiggerCursors: true.
  TrashCanMorph
  slideDismissalsToTrash: true;
  preserveTrash: true.
  SugarNavigatorBar
  showHideButton: false;
  showSugarNavigator: true.
+ Preferences disable: #showAdvancedNavigatorButtons.
+
+ "Ignore warnings."
+ Deprecation showDeprecationWarnings: false.
+ Preferences
+ disable: #warnIfChangesFileReadOnly;
+ disable: #warnIfNoChangesFile;
+ disable: #warnIfNoSourcesFile.
+ !
- Deprecation showDeprecationWarnings: false.!