| Issue 42: | Bug report & fix about resizing the innerwindow which breaks all example if resized | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Labels:
Component-Core
|