Issue 42: Bug report & fix about resizing the innerwindow which breaks all example if resized
Status:  Done
Owner:
Closed:  Mar 2009
Project Member Reported by damienmi...@gmail.com, Mar 17, 2009
What steps will reproduce the problem?
1. start launcher.py
2. open a plugin: 3dview for example 
3. resize it 
4. try to click into the window (on the top-right part), the event are not
dispatched correctly 

What is the expected output? What do you see instead?
The output should be a resize/rotation of the 3d object and not of the
innerwindow. 

What version of the product are you using? On what operating system?
svn r650

To fix it: in innerwindow.py in the def on_resize(w,h)

replace these two lines:
for child in self.container.children:
    child.on_resize(w,h)

with:
    self.container.size = (w, h)

(the resize the container as well as its children)

Mar 17, 2009
Project Member #2 txprog
(No comment was entered for this change.)
Labels: Component-Core
Mar 18, 2009
Project Member #3 txprog
imported in r663
Status: Done