The Trunk: Morphic-mt.1270.mcz

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

The Trunk: Morphic-mt.1270.mcz

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

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

Name: Morphic-mt.1270
Author: mt
Time: 13 August 2016, 9:17:19.163008 am
UUID: 8ca7cb11-3c50-814f-9986-d3f24d7d7410
Ancestors: Morphic-mt.1269

Preference help text updates. Thanks Tim R.!

=============== Diff against Morphic-mt.1269 ===============

Item was changed:
  ----- Method: CornerGripMorph class>>drawCornerResizeHandles (in category 'preferences') -----
  drawCornerResizeHandles
  <preference: 'Draw Corner Resize Handles'
  category: 'windows'
+ description: 'Set whether the resize handles on windows should be drawn on the window frame. This does not enable nor disable the resizing function'
- description: 'Governs the resize handles on windows should be drawn. This does not disable them'
  type: #Boolean>
  ^ DrawCornerResizeHandles ifNil: [ false ]!

Item was changed:
  ----- Method: DialogWindow class>>roundedDialogCorners (in category 'preferences') -----
  roundedDialogCorners
  <preference: 'Rounded Dialog Corners'
  categoryList: #(windows dialogs)
+ description: 'If true, dialog windows will have rounded corners'
- description: 'Governs whether dialog windows should have rounded corners'
  type: #Boolean>
  ^ RoundedDialogCorners ifNil: [ true ]!

Item was changed:
  ----- Method: PluggableButtonMorph class>>roundedButtonCorners (in category 'preferences') -----
  roundedButtonCorners
  <preference: 'Rounded Button Corners'
  category: 'windows'
+ description: 'If true, pluggable buttons in system windows will be rounded'
- description: 'Governs whether pluggable buttons in system windows should be rounded'
  type: #Boolean>
  ^ RoundedButtonCorners ifNil: [ true ]!

Item was changed:
  ----- Method: PluggableTextMorph class>>simpleFrameAdornments (in category 'frame adornments') -----
  simpleFrameAdornments
  <preference: 'Simple Frame Adornments'
  category: 'Morphic'
+ description: 'When true, use a simple rectangle border as feedback for indicating unsaved changes in text editors, otherwise use a small triangle in the upper-right corner'
- description: 'When true, use a simple rectangular feedback for indicating unsaved changes in text editors'
  type: #Boolean>
  ^SimpleFrameAdornments ifNil:[false]!

Item was changed:
  ----- Method: SystemWindow class>>hideExpandButton (in category 'preferences') -----
  hideExpandButton
 
  <preference: 'Hide Expand Button'
  category: 'windows'
+ description: 'Hides the expand ( + ) button in all window titlebars'
- description: 'Hides the expand button in all windows'
  type: #Boolean>
  ^ HideExpandButton ifNil: [ false ]
  !

Item was changed:
  ----- Method: SystemWindow class>>roundedWindowCorners (in category 'preferences') -----
  roundedWindowCorners
 
  <preference: 'Rounded Window Corners'
  category: 'windows'
+ description: 'If true, windows will have rounded corners.'
- description: 'If true, windows will have a rounded corners.'
  type: #Boolean>
  ^ RoundedWindowCorners ifNil: [false]!

Item was changed:
  ----- Method: TextEditor class>>autoEnclose (in category 'preferences') -----
  autoEnclose
  <preference: 'Auto enclose brackets () {} []'
  categoryList: #('Morphic' 'editing')
+ description: 'When true, typing an opening parenthesis, bracket or square-bracket will also add its corresponding closing character after the cursor so you can type within the bracket.'
- description: 'When true, typing an opening parenthesis, bracket or square-bracket will also add its corresponding closing character in front of the cursor.'
  type: #Boolean>
 
  ^ AutoEnclose ifNil: [ false ]!

Item was changed:
  ----- Method: TextEditor class>>encloseSelection (in category 'preferences') -----
  encloseSelection
  <preference: 'Enclose selection with brackets () {} [] '''' "" || <>'
  categoryList: #('Morphic' 'editing')
+ description: 'When true, selecting text and typing an opening parenthesis, bracket, square-bracket, single quote, or double quote will add corresponding character around the selection without requiring a cmd key.'
- description: 'When true, selecting text and typing an opening parenthesis, bracket, square-bracket, single quote, or double quote will add corresponding character around the selection.'
  type: #Boolean>
 
  ^ EncloseSelection ifNil: [ false ]!