Marcel Taeumel uploaded a new version of PreferenceBrowser to project The Trunk:
http://source.squeak.org/trunk/PreferenceBrowser-mt.96.mcz==================== Summary ====================
Name: PreferenceBrowser-mt.96
Author: mt
Time: 14 October 2019, 7:35:26.652144 pm
UUID: aa1e9552-08d9-1348-850d-f187cbc5aa43
Ancestors: PreferenceBrowser-mt.95
Complements Morphic-mt.1569.
=============== Diff against PreferenceBrowser-mt.95 ===============
Item was changed:
----- Method: PreferenceWizardMorph>>adjustSettingsForLowPerformance (in category 'support') -----
adjustSettingsForLowPerformance
self updateLowPerformanceLabel: 'Please wait, optimizing performance...' translated.
self refreshWorld.
self stateGradients "flat look" ifFalse: [self toggleGradients].
self stateBlinkingCursor ifTrue: [self toggleBlinkingCursor].
self stateFastDrag ifFalse: [self toggleFastDrag].
self stateSoftShadows ifTrue: [self toggleSoftShadows].
self stateHardShadows ifTrue: [self toggleHardShadows].
self stateRoundedWindowLook ifTrue: [self toggleRoundedWindowLook].
self stateRoundedButtonLook ifTrue: [self toggleRoundedButtonLook].
self stateAttachToolsToMouse ifTrue: [self toggleAttachToolsToMouse].
self stateToolAndMenuIcons ifTrue: [self toggleToolAndMenuIcons].
self stateSmartHorizontalSplitters ifTrue: [self toggleSmartHorizontalSplitters].
self stateSmartVerticalSplitters ifTrue: [self toggleSmartVerticalSplitters].
+ PluggableListMorph
+ highlightHoveredRow: false;
+ filterableLists: false;
+ highlightPreSelection: true; "Feedback is important!!"
+ flashOnErrors: false.
- PluggableListMorph highlightHoveredRow: false; filterableLists: false.
TheWorldMainDockingBar showSecondsInClock: false.
Preferences disable: #balloonHelpInMessageLists.
"Set simple background."
ActiveWorld setAsBackground: MorphicProject defaultFill.
previewWorld fillStyle: ActiveWorld fillStyle.
"Done."
self updateLowPerformanceLabel: 'Settings were adjusted for optimal performance.' translated.
!