From ede0790b5c953edf0a14dae1f75fa449d5c3286a Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Tue, 25 May 1999 19:28:28 +0000 Subject: Set the canvas scroll region here, not in size_allocate(). Also, use the 1999-05-25 Federico Mena Quintero * year-view.c (idle_handler): Set the canvas scroll region here, not in size_allocate(). Also, use the correct width and height based on the allocation and the precomputed minimum width/height values. * gnome-cal.c (setup_widgets): Set the scrollbar policy of the scrolled window. * main.c (setup_appbar): Use the correct type for the appbar. * gncal-day-view.c: Removed unused function switch_to_day(). * gncal-day-panel.c (calendar_day_selected): Removed unused variable. 1999-05-25 Federico Mena Quintero * configure.in: Added the gncal/doc/* Makefiles to AC_OUTPUT. svn path=/trunk/; revision=939 --- calendar/gnome-cal.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'calendar/gnome-cal.c') diff --git a/calendar/gnome-cal.c b/calendar/gnome-cal.c index 3558f58347..72a411777c 100644 --- a/calendar/gnome-cal.c +++ b/calendar/gnome-cal.c @@ -56,6 +56,9 @@ setup_widgets (GnomeCalendar *gcal) gcal->year_view = year_view_new (gcal, now); sw = gtk_scrolled_window_new (NULL, NULL); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), + GTK_POLICY_NEVER, + GTK_POLICY_AUTOMATIC); gtk_container_add (GTK_CONTAINER (sw), gcal->year_view); gtk_notebook_append_page (GTK_NOTEBOOK (gcal->notebook), gcal->day_view, gtk_label_new (_("Day View"))); -- cgit v1.2.3