Hi
What version do you use? In bloc drawing stuff happens in drawOnSpartaCanvas, not athensCanvas.
I use BlElement but I do not like the name.Also strangely enough you should not get red screen of death, instead image should crash in case of drawing error. Error handling is not yet done, because I don't like how red screen of death behaves.
Also, why do use BlMorph when we have BlElement?
I'm confused...
On Apr 2, 2016 4:59 PM, "stepharo" <stepharo@free.fr> wrote:
Hi
I got a red square of death and I can inspect the blMorph but I cannot get a debugger to understand the drawing problem?
rawOnAthensCanvas: aCanvas
�� �� super drawOnAthensCanvas: aCanvas.
�� �� aCanvas
�� �� �� �� drawShape: (BlShape new
�� �� �� �� �� �� �� �� �� �� �� �� �� �� strokePaint:
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� (BlStrokePaint new
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� paint: (BlColorPaint new color: (Color blue));
�� �� �� �� �� �� �� �� �� �� �� �� �� �� width: 15);
�� �� �� �� �� �� �� �� path: BlCirclePath new).
and when I select
(BlShape new
�� �� �� �� �� �� �� �� �� �� �� �� �� �� strokePaint:
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� (BlStrokePaint new
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� paint: (BlColorPaint new color: (Color blue));
�� �� �� �� �� �� �� �� �� �� �� �� �� �� width: 15);
�� �� �� �� �� �� �� �� path: BlCirclePath new).
I can inspect it.