The Trunk: Morphic-eem.1464.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-eem.1464.mcz

commits-2
Eliot Miranda uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-eem.1464.mcz

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

Name: Morphic-eem.1464
Author: eem
Time: 12 October 2018, 9:36:17.189532 am
UUID: c59113bb-c716-4095-9583-a755eb96e64c
Ancestors: Morphic-cmm.1463

From Stéphane Rollandin:

I found a little bug, which notably makes system windows not able to
have both rounded corners and a gradient look. It is in method Canvas>>#frameAndFillRoundRect:radius:fillStyle:borderStyle:. The #asColor call there should be removed: we need to give the full fill style.

=============== Diff against Morphic-cmm.1463 ===============

Item was changed:
  ----- Method: Canvas>>frameAndFillRoundRect:radius:fillStyle:borderStyle: (in category 'drawing-rectangles') -----
  frameAndFillRoundRect: aRectangle radius: cornerRadius fillStyle: fillStyle borderStyle: borderStyle
 
  self
  frameAndFillRoundRect: aRectangle
  radius: cornerRadius
+ fillStyle: fillStyle
- fillStyle: fillStyle asColor
  borderWidth: borderStyle width
  borderColor: borderStyle color.!