The Trunk: System-tpr.1128.mcz

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

The Trunk: System-tpr.1128.mcz

commits-2
tim Rowledge uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-tpr.1128.mcz

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

Name: System-tpr.1128
Author: tpr
Time: 10 January 2020, 12:51:58.425909 pm
UUID: fe1ee0d3-7fe8-468a-91ab-ecbfecdd5cda
Ancestors: System-mt.1127

Remove reference to a deprecated preference; avoids an annyoing and possibly problematic notifier during a theme change

=============== Diff against System-mt.1127 ===============

Item was changed:
  ----- Method: Preferences class>>outOfTheBox (in category 'themes') -----
  outOfTheBox
  "The default out-of-the-box preference settings for Squeak 3.2.  The 'alternative' window-look and scrollbar-look are used.  Button panes are used but not annotation panes.  Scrollbars are on the right and do not flop out."
 
  self setPreferencesFrom: self defaultValueTableForCurrentRelease.
+ "SystemNavigation thoroughSenders: true. <- deprecated since all sender searching is now very thorough"
- SystemNavigation thoroughSenders: true.
  SystemWindow clickOnLabelToEdit: true.
  Text ignoreStyleIfOnlyBold: true.
  MenuMorph roundedMenuCorners: true.
  ScrollBar scrollBarsWithoutMenuButton: true.
  SoundPlayer soundQuickStart: false.
  SoundPlayer stopSoundWhenDone: false.
  SoundService soundEnabled: true.
  SoundRecorder canRecordWhilePlaying:false.!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: System-tpr.1128.mcz

Chris Muller-3
I noticed that too, thanks.

On Fri, Jan 10, 2020 at 2:52 PM <[hidden email]> wrote:
tim Rowledge uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-tpr.1128.mcz

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

Name: System-tpr.1128
Author: tpr
Time: 10 January 2020, 12:51:58.425909 pm
UUID: fe1ee0d3-7fe8-468a-91ab-ecbfecdd5cda
Ancestors: System-mt.1127

Remove reference to a deprecated preference; avoids an annyoing and possibly problematic notifier during a theme change

=============== Diff against System-mt.1127 ===============

Item was changed:
  ----- Method: Preferences class>>outOfTheBox (in category 'themes') -----
  outOfTheBox
        "The default out-of-the-box preference settings for Squeak 3.2.  The 'alternative' window-look and scrollbar-look are used.  Button panes are used but not annotation panes.  Scrollbars are on the right and do not flop out."

        self setPreferencesFrom: self defaultValueTableForCurrentRelease.
+       "SystemNavigation thoroughSenders: true. <- deprecated since all sender searching is now very thorough"
-       SystemNavigation thoroughSenders: true.
        SystemWindow clickOnLabelToEdit: true.
        Text ignoreStyleIfOnlyBold: true.
        MenuMorph roundedMenuCorners: true.
        ScrollBar scrollBarsWithoutMenuButton: true.
        SoundPlayer soundQuickStart: false.
        SoundPlayer stopSoundWhenDone: false.
        SoundService soundEnabled: true.
        SoundRecorder canRecordWhilePlaying:false.!