Use correct dimensions for sc_adjust_window

This commit is contained in:
Moritz Lipp 2012-02-09 01:20:42 +01:00
parent 2fbaded5b7
commit 1ff8f6eb22

View File

@ -57,10 +57,10 @@ sc_adjust_window(girara_session_t* session, girara_argument_t* argument,
}
/* get window size */
/* TODO: Get correct size of the view widget */
gint width;
gint height;
gtk_window_get_size(GTK_WINDOW(session->gtk.window), &width, &height);
GtkAllocation allocation;
gtk_widget_get_allocation(session->gtk.view, &allocation);
gint width = allocation.width;
gint height = allocation.height;
/* calculate total width and max-height */
double total_width = 0;