From 2389bd7bedc9b1caf3e9f34631c70c8ddf3fb306 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Thu, 8 Oct 1998 17:19:43 +0000 Subject: Do some cleanup; now we pass a struct with the layout algorithm's state 1998-10-08 Federico Mena Quintero * layout.c: Do some cleanup; now we pass a struct with the layout algorithm's state instead of passing a trillion parameters around. * gncal-full-day.c (layout_children): Use the new generic layout engine. (child_compare): Sort keys are start time then end time, not just start time. This produces somewhat nicer results for the layout algorithm. The new layout code uses a partition of the time range occupied by the events, rather than using a fixed time granularity. This is better since the different parts of the program that use the layout module will have different semantics regarding snapping the event bounds to a fixed "time grid". svn path=/trunk/; revision=434 --- calendar/quick-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'calendar/quick-view.c') diff --git a/calendar/quick-view.c b/calendar/quick-view.c index 62cb433447..9f647841cb 100644 --- a/calendar/quick-view.c +++ b/calendar/quick-view.c @@ -194,7 +194,7 @@ quick_view_new (GnomeCalendar *calendar, char *title, GList *event_list) /* Create base widgets for the popup window */ w = gtk_frame_new (NULL); - gtk_frame_set_shadow_type (GTK_FRAME (w), GTK_SHADOW_OUT); + gtk_frame_set_shadow_type (GTK_FRAME (w), GTK_SHADOW_ETCHED_OUT); gtk_container_add (GTK_CONTAINER (qv), w); vbox = gtk_vbox_new (FALSE, 0); -- cgit