show/hide this revision's text 2 edited tags
show/hide this revision's text 1

WebView renders in the wrong location in my ScreenSaverView

I've written a screen saver that displays a web page. It works exactly as I want it to on my main display, but in the preview and secondary displays, the web view is hanging off the top of the screen.

Example (from preview):

screen saver bug
Uploaded with plasq's Skitch!

My code is pretty straightforward. From within initWithFrame:isPreview: I have the following code:

webview = [[WebView alloc] initWithFrame:frame
                           frameName:@"main"
                           groupName:@"main"];
[self addSubview:webview];

Does anyone have any idea what's happening?

If anyone wants to play with the project, the code is on github.