aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-07-08 07:23:40 +0800
committerChris Lahey <clahey@src.gnome.org>2000-07-08 07:23:40 +0800
commitd1550ea22f88670875c2cb77d2bb46d8a97d6de0 (patch)
treec170d6f3fe1b3c7745b0407c927584e74c0fed3b /addressbook/gui/component/select-names
parentd346998ba817c97e767cef055fd73b86c6f02dfb (diff)
downloadgsoc2013-evolution-d1550ea22f88670875c2cb77d2bb46d8a97d6de0.tar
gsoc2013-evolution-d1550ea22f88670875c2cb77d2bb46d8a97d6de0.tar.gz
gsoc2013-evolution-d1550ea22f88670875c2cb77d2bb46d8a97d6de0.tar.bz2
gsoc2013-evolution-d1550ea22f88670875c2cb77d2bb46d8a97d6de0.tar.lz
gsoc2013-evolution-d1550ea22f88670875c2cb77d2bb46d8a97d6de0.tar.xz
gsoc2013-evolution-d1550ea22f88670875c2cb77d2bb46d8a97d6de0.tar.zst
gsoc2013-evolution-d1550ea22f88670875c2cb77d2bb46d8a97d6de0.zip
Changed to line mode.
2000-07-07 Christopher James Lahey <clahey@helixcode.com> * gui/component/select-names/e-select-names.c: Changed to line mode. svn path=/trunk/; revision=3968
Diffstat (limited to 'addressbook/gui/component/select-names')
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c9
1 files changed, 9 insertions, 0 deletions
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;