Add 2px height to avoid a vertical scrollbar with Gtk-Wimp

svn path=/trunk/; revision=17846
This commit is contained in:
Jaap Keuter 2006-04-10 17:24:14 +00:00
parent fee131e1a7
commit 3d14528215
1 changed files with 1 additions and 1 deletions

View File

@ -557,7 +557,7 @@ capture_if_cb(GtkWidget *w _U_, gpointer d _U_)
}
gtk_widget_size_request(GTK_WIDGET(close_bt), &requisition);
height += requisition.height + 25;
height += requisition.height + 27;
gtk_window_set_default_size(GTK_WINDOW(cap_if_w), -1, height);
gtk_widget_grab_default(close_bt);