|
From: Theo D. <td...@st...> - 2007-05-30 17:31:17
|
Hello,
I have noticed what appears to be a bug when dealing with frames and
visibility. If I make all the objects in the frame disappear, with
for obj in a.objects:
obj.visible = 0
and then attempt to make the objects reappear with
for obj in a.objects:
obj.visible = 0
They do not appear. Is this a known, or does anyone have any
suggestions? Presently I am overcoming this by reinstantiating the
invisible objects, but i would like to be able to reduce the amount of
memory this uses.
Thanks,
Theo
|