The Trunk: Morphic-mt.1404.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.1404.mcz

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

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

Name: Morphic-mt.1404
Author: mt
Time: 29 March 2018, 10:02:19.017053 am
UUID: c6566b82-98cf-d247-9b7a-9792b583499d
Ancestors: Morphic-mt.1403

Fix minor regression from last commit. Sorry.

=============== Diff against Morphic-mt.1403 ===============

Item was changed:
  ----- Method: ScrollPane>>drawOverlayOn: (in category 'drawing') -----
  drawOverlayOn: aCanvas
  "Draw my border OVER my submorphs because the scrollbars overlap."
 
- self borderStyle width = 0 ifTrue: [^ self].
-
  self wantsRoundedCorners
  ifTrue: [aCanvas frameRoundRect: self bounds radius: self cornerRadius width: self borderStyle width color: self borderStyle color]
+ ifFalse: [aCanvas frameRectangle: self bounds width: self borderStyle width color: self borderStyle color].
+
+ super drawOverlayOn: aCanvas.!
- ifFalse: [aCanvas frameRectangle: self bounds width: self borderStyle width color: self borderStyle color].!