diff options
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 9 |
2 files changed, 14 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 5492eca4ea..8fcdf49b7f 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2000-07-07 Christopher James Lahey <clahey@helixcode.com> + * gui/component/select-names/e-select-names.c: Changed to line + mode. + +2000-07-07 Christopher James Lahey <clahey@helixcode.com> + * gui/component/select-names/e-select-names-manager.c, gui/component/select-names/e-select-names-model.c: Implemented the get_cards function. diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 8814fe06eb..93214ca923 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -150,6 +150,11 @@ e_addressbook_create_ebook_table(char *name, char *string1, char *string2, int n g_free(uri); g_free(filename); table = e_table_new (header, model, SPEC); + + gtk_object_set(GTK_OBJECT(table), + "cursor_mode", E_TABLE_CURSOR_LINE, + NULL); + gtk_object_set_data(GTK_OBJECT(table), "model", model); return table; } @@ -331,6 +336,10 @@ e_select_names_add_section(ESelectNames *e_select_names, char *name, char *id, E e_table_header_add_column (header, e_table_col_new (0, "Full Name", 1.0, 20, cell_left_just, g_str_compare, TRUE), 0); etable = e_table_new (header, model, SPEC2); + + gtk_object_set(GTK_OBJECT(etable), + "cursor_mode", E_TABLE_CURSOR_LINE, + NULL); child->model = model; child->source = source; |