Issue 209: imageScatter pos and size problem
Status:  Fixed
Owner:
Closed:  Jul 2010
Reported by simbol...@gmail.com, Feb 10, 2010
Version pymt 0.4
windows xp

There's a bug in WidgetScatters (and others, maybe) when I change size and
pos properties.

if i change size before pos, the widget will be in the correct pos:
(((
anyw = MTScatterWidget()
anyw.size = [300,300]
anyw.pos = [window.width / 2, window.height / 2]
window.add_widget(anyw)
)))

but if i change pos before size, the widget will be in the wrong position,
I'd need to change pos again to correct it:

(((
anyw = MTScatterWidget()
    anyw.pos = [window.width / 2, window.height / 2]
    anyw.size = [300,300]
    window.add_widget(anyw)
)))
Feb 10, 2010
Project Member #1 txprog
(No comment was entered for this change.)
Status: Accepted
Owner: txprog
Labels: Milestone-0.4.1
Jun 1, 2010
Project Member #2 txprog
(No comment was entered for this change.)
Labels: Milestone-0.5
Jun 8, 2010
Project Member #3 txprog
(No comment was entered for this change.)
Owner: thomas.hansen
Jul 1, 2010
Project Member #4 thomas.h...@gmail.com
fixed in new scatter...(once and for all ?!)
Status: Fixed