Read dimensions from viewport not drawing area. This causes renders to not go overheight. As a result, remove the scheduled callback for after throbbing. This means we don't get the white flash on GTK page completion.
svn path=/trunk/netsurf/; revision=3352
This commit is contained in:
parent
36ecbc6be2
commit
7d75762004
|
@ -773,8 +773,6 @@ void gui_window_stop_throbber(struct gui_window* _g)
|
|||
schedule_remove(nsgtk_throb, g);
|
||||
|
||||
gtk_image_set_from_pixbuf(g->throbber, nsgtk_throbber->framedata[0]);
|
||||
// Issue a final reflow so that the content object reports its size correctly
|
||||
schedule(5, (gtk_callback)(nsgtk_window_reflow_content), _g);
|
||||
}
|
||||
|
||||
gboolean nsgtk_scaffolding_is_busy(nsgtk_scaffolding *scaffold)
|
||||
|
|
|
@ -825,8 +825,8 @@ bool gui_copy_to_clipboard(struct selection *s)
|
|||
void gui_window_get_dimensions(struct gui_window *g, int *width, int *height,
|
||||
bool scaled)
|
||||
{
|
||||
*width = GTK_WIDGET(g->drawing_area)->allocation.width;
|
||||
*height = GTK_WIDGET(g->drawing_area)->allocation.height;
|
||||
*width = GTK_WIDGET(g->viewport)->allocation.width;
|
||||
*height = GTK_WIDGET(g->viewport)->allocation.height;
|
||||
|
||||
if (scaled) {
|
||||
*width /= g->scale;
|
||||
|
|
Loading…
Reference in New Issue