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

commits at source.squeak.org commits at source.squeak.org
Thu Aug 11 16:13:25 UTC 2016


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

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

Name: Morphic-mt.1260
Author: mt
Time: 11 August 2016, 6:12:50.268369 pm
UUID: e7878093-edbd-7f45-8d64-51ab7569931c
Ancestors: Morphic-mt.1259

Fix some old window color left-over.

=============== Diff against Morphic-mt.1259 ===============

Item was changed:
  ----- Method: ProportionalSplitterMorph>>initialize (in category 'initialization') -----
  initialize
  
  	super initialize.
  	
  	self beSplitsLeftAndRight.
  	
  	leftOrTop := OrderedCollection new.
  	rightOrBottom := OrderedCollection new.
  	
  	Preferences showSplitterHandles 
  		ifTrue: [
  			handle := CircleMorph new
  					borderWidth: 0;
  					extent: 4 at 4;
  					yourself.
  			handle fillStyle: ((GradientFillStyle 
+ 						ramp: {0.0 -> Color veryVeryLightGray muchLighter. 
+ 							1.0 -> Color veryVeryLightGray darker})
- 						ramp: {0.0 -> Preferences defaultWindowColor muchLighter. 
- 							1.0 -> Preferences defaultWindowColor darker})
  						origin: handle topLeft;
  						direction: 0 @ handle bounds extent y;
  						normal: handle bounds extent x @ 0;
  						radial: false;
  						yourself).
  			self addMorphCentered: handle].
  	self initializeMovements!



More information about the Squeak-dev mailing list