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

commits at source.squeak.org commits at source.squeak.org
Wed Jan 13 08:14:11 UTC 2016


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

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

Name: Morphic-mt.1066
Author: mt
Time: 13 January 2016, 9:13:37.52568 am
UUID: 0736edd7-ebd0-41ee-b085-367e364e0ab3
Ancestors: Morphic-mt.1065

Makes the border for rounded sliders thinner.

=============== Diff against Morphic-mt.1065 ===============

Item was changed:
  ----- Method: ScrollBar>>initializeSlider (in category 'initialize') -----
  initializeSlider
  
  	self
  		initializeMenuButton;
  		initializeUpButton;
  		initializeDownButton;
  		initializePagingArea.
  		
  	super initializeSlider.
  	self expandSlider.
  	
+ 	self class roundedScrollBarLook ifTrue: [
+ 		slider cornerStyle: #rounded.
+ 		sliderShadow cornerStyle: #rounded.
+ 		
+ 		Preferences menuAppearance3d ifTrue: [	
+ 			slider borderStyle: (BorderStyle complexRaised width: 1)]].
+ 	
+ 	self sliderColor: self sliderColor.!
- 	self class roundedScrollBarLook
- 		ifTrue: [slider cornerStyle: #rounded.
- 			slider
- 				borderStyle: (BorderStyle complexRaised width: 3).
- 			sliderShadow cornerStyle: #rounded].
- 	self sliderColor: self sliderColor!



More information about the Squeak-dev mailing list