| Issue 209: | imageScatter pos and size problem | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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)
)))
Jun 1, 2010
(No comment was entered for this change.)
Labels:
Milestone-0.5
Jun 8, 2010
(No comment was entered for this change.)
Owner:
thomas.hansen
Jul 1, 2010
fixed in new scatter...(once and for all ?!)
Status:
Fixed
|
Owner: txprog
Labels: Milestone-0.4.1