added save page handlers.

svn path=/trunk/netsurf/; revision=13266
This commit is contained in:
Ole Loots 2011-12-10 01:06:23 +00:00
parent a0ecaf6262
commit 0dfb12d43b
1 changed files with 2 additions and 4 deletions

View File

@ -113,7 +113,7 @@ void gui_poll(bool active)
evnt.timer = 0;
flags |= MU_TIMER;
EvntWindom( flags );
next_poll = clock() + CLOCKS_PER_SEC;
next_poll = clock() + (CLOCKS_PER_SEC>>2);
}
} else {
if( input_window != NULL ){
@ -481,7 +481,7 @@ static void throbber_advance( void * data )
gw->root->toolbar->throbber.index = THROBBER_MIN_INDEX;
ApplWrite( _AESapid, WM_REDRAW, gw->root->handle->handle,
work.g_x, work.g_y, work.g_w, work.g_h );
schedule(50, throbber_advance, gw );
schedule(100, throbber_advance, gw );
}
void gui_window_start_throbber(struct gui_window *w)
@ -957,8 +957,6 @@ static void gui_init(int argc, char** argv)
nkc_init();
atari_plotter_init( option_atari_screen_driver, option_atari_font_driver );
LOG(("Knockout rendering: %s\n", option_atari_knockout ? "yes" : "no"));
plot_set_knockout( option_atari_knockout );
}
static char *theapp = (char*)"NetSurf";