the tabs in the tabbed dialog only work when the panel is at the left of the screen. appears to be a screen-space / panel-space co-ordinate conflict somewhere.
Logged In: YES user_id=977635
This is due to an extraneous # in TabbedPanel._pyuiMouseDown(): x = event.pos[0] #- self.rect[0]
Should be: x = event.pos[0] - self.rect[0]
Log in to post a comment.
Logged In: YES
user_id=977635
This is due to an extraneous # in TabbedPanel._pyuiMouseDown():
x = event.pos[0] #- self.rect[0]
Should be:
x = event.pos[0] - self.rect[0]