[squeak-dev] The Trunk: Morphic-mt.1895.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Feb 14 09:29:58 UTC 2022


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

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

Name: Morphic-mt.1895
Author: mt
Time: 14 February 2022, 10:29:50.78881 am
UUID: 30774b37-b3d1-724b-8ed9-59c3b8f18dd4
Ancestors: Morphic-mt.1894

Fill "Accessibility" preference category with more related preferences.

=============== Diff against Morphic-mt.1894 ===============

Item was changed:
  ----- Method: AbstractResizerMorph class>>gripThickness (in category 'preferences') -----
  gripThickness
  	"A number in pixels that encodes the area were the user can target splitters or edge grips."
  
  	<preference: 'Grip Thickness'
+ 		categoryList: #(windows Accessibility)
- 		category: 'windows'
  		description: 'A number in pixels that encodes the area were the user can target splitters or edge grips such as in application windows. Bigger grips make it easier to click on them.'
  		type: #Number>
  		
  	^ ((GripThickness ifNil: [4]) * RealEstateAgent scaleFactor) rounded!

Item was changed:
  ----- Method: AbstractResizerMorph class>>handleLength (in category 'preferences') -----
  handleLength
  
  	<preference: 'Handle Length'
+ 		categoryList: #(windows Accessibility)
- 		category: 'windows'
  		description: 'AThe size of a grip handle if shown. Can be interpreted as width or height, depending of the resizer orientation. Does not affect the clickable area. See grip thickness for that.'
  		type: #Number>
  			
  	^ ((HandleLength ifNil: [16]) * RealEstateAgent scaleFactor) rounded!

Item was changed:
  ----- Method: CornerGripMorph class>>drawCornerResizeHandles (in category 'preferences') -----
  drawCornerResizeHandles
  	<preference: 'Draw Corner Resize Handles'
+ 		categoryList: #(windows Accessibility)
- 		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'
  		type: #Boolean>
  	^ DrawCornerResizeHandles ifNil: [ false ]!

Item was changed:
  ----- Method: CornerGripMorph class>>drawEdgeResizeHandles (in category 'preferences') -----
  drawEdgeResizeHandles
  	<preference: 'Draw Edge Resize Handles'
+ 		categoryList: #(windows Accessibility)
- 		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.'
  		type: #Boolean>
  	^ DrawEdgeResizeHandles ifNil: [ false ]!



More information about the Squeak-dev mailing list