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

commits at source.squeak.org commits at source.squeak.org
Tue Apr 14 15:02:20 UTC 2015


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

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

Name: ToolBuilder-Morphic-mt.127
Author: mt
Time: 14 April 2015, 5:02:13.442 pm
UUID: 3b120a47-da89-fc4c-a76a-f61713c2e969
Ancestors: ToolBuilder-Morphic-mt.126

Fixes another really, really, really nasty GUI bug where the tool builder overwrites visual properties when configuring just the layout frame... *sigh*

=============== Diff against ToolBuilder-Morphic-mt.126 ===============

Item was changed:
  ----- Method: MorphicToolBuilder>>setFrame:in: (in category 'private') -----
  setFrame: aRectangle in: widget
  	| frame |
  	aRectangle ifNil:[^nil].
  	frame := aRectangle isRectangle
  		ifTrue: [self asFrame: aRectangle]
  		ifFalse: [aRectangle]. "assume LayoutFrame"
  	widget layoutFrame: frame.
+ 	widget hResizing: #spaceFill; vResizing: #spaceFill.!
- 	widget hResizing: #spaceFill; vResizing: #spaceFill.
- 	(parent isSystemWindow) ifTrue:[
- 		widget borderWidth: 2; borderColor: #inset.
- 	].!



More information about the Squeak-dev mailing list