diff options
-rw-r--r-- | my-evolution/ChangeLog | 6 | ||||
-rw-r--r-- | my-evolution/e-summary-shown.c | 2 | ||||
-rw-r--r-- | my-evolution/e-summary-table.c | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index c01eb5670c..b27f20471c 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,9 @@ +2002-05-20 Ettore Perazzoli <ettore@ximian.com> + + * e-summary-table.c: Don't show the headers in the folder table. + + * e-summary-shown.c (e_summary_shown_init): Set the spacing to 3. + 2002-05-15 Ettore Perazzoli <ettore@ximian.com> * component-factory.c (create_component): Pass NULL as diff --git a/my-evolution/e-summary-shown.c b/my-evolution/e-summary-shown.c index 6c0dbd726f..c1cd23c4f6 100644 --- a/my-evolution/e-summary-shown.c +++ b/my-evolution/e-summary-shown.c @@ -477,6 +477,8 @@ e_summary_shown_init (ESummaryShown *shown) ESummaryShownPrivate *priv; GtkWidget *vbox; + gtk_box_set_spacing (GTK_BOX (shown), 3); + shown->shown_model = g_hash_table_new (NULL, NULL); shown->all_model = g_hash_table_new (NULL, NULL); diff --git a/my-evolution/e-summary-table.c b/my-evolution/e-summary-table.c index 297da365e3..ac4bf7f49a 100644 --- a/my-evolution/e-summary-table.c +++ b/my-evolution/e-summary-table.c @@ -60,7 +60,7 @@ char *headers[COLS] = { }; #endif -#define SPEC "<ETableSpecification cursor-mode=\"line\" draw-focus=\"true\"> \ +#define SPEC "<ETableSpecification cursor-mode=\"line\" draw-focus=\"true\" no-headers=\"true\"> \ <ETableColumn model_col=\"0\" _title=\"Shown\" minimum_width=\"20\" resizable=\"false\" cell=\"tricell\" compare=\"integer\"/> \ <ETableColumn model_col=\"1\" _title=\"Name\" resizable=\"true\" minimum-width=\"32\" cell=\"render-name\" compare=\"string\"/> \ <ETableState> \ |