View Single Post
daperl's Avatar
Posts: 2,427 | Thanked: 2,986 times | Joined on Dec 2007
#266
Originally Posted by tso View Post
just noticed that if i try to use any of the scroll arrows of that code area, the page takes of scrolling when i release screen pressure...
You don't like that feature? Yeah, seems as if the main_frame is handling child_frame button events. Makes sense; they're most likely being passed up. Damn, great catch.

@Bundyo, I think when scrolling you need to check the webview handlers for:

Code:
ev.window == wv.get_main_frame()
or maybe:

Code:
ev.window == wv.get_main_frame().window
Not really sure. They might be equivalent.

EDIT: No, the above is inaccurate. It only seems to have to do with auto_scrolling. Under non-auto_scrolling conditions (click-drag-pause/stop-release) everything seems fine.
__________________
N9: Go white or go home

Last edited by daperl; 2009-03-03 at 09:47.