|
From: John H. <jdh...@ac...> - 2005-02-21 14:34:27
|
>>>>> "Darren" == Darren Dale <dd...@co...> writes:
Darren> Wow, I was going crazy trying to reproduce this. Your
Darren> script works fine. Try this one:
....
Darren> Both the x *and* y axes have to be set_visible(False) to
Darren> reproduce the behavior.
OK, that helps. Thanks.
The problem can be fixed in backend_ps RendererPS.set_color, change
the line
self.color = (r,g,b)
to
if store: self.color = (r,g,b)
Thanks for the report and example.
JDH
|