diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-03-08 06:20:05 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-03-08 06:20:05 +0800 |
commit | cf30e936111f135308f0a8ae6405dffc7e9247c6 (patch) | |
tree | cfb6da16224c3c1d1df2267d54fa9f0858fe3f88 | |
parent | 46af4ae9b3e55ea80553443ff34f794afb997e3c (diff) | |
download | gsoc2013-evolution-cf30e936111f135308f0a8ae6405dffc7e9247c6.tar gsoc2013-evolution-cf30e936111f135308f0a8ae6405dffc7e9247c6.tar.gz gsoc2013-evolution-cf30e936111f135308f0a8ae6405dffc7e9247c6.tar.bz2 gsoc2013-evolution-cf30e936111f135308f0a8ae6405dffc7e9247c6.tar.lz gsoc2013-evolution-cf30e936111f135308f0a8ae6405dffc7e9247c6.tar.xz gsoc2013-evolution-cf30e936111f135308f0a8ae6405dffc7e9247c6.tar.zst gsoc2013-evolution-cf30e936111f135308f0a8ae6405dffc7e9247c6.zip |
Don't display a header in the table on the left.
* e-multi-config-dialog.c: Don't display a header in the table on
the left.
svn path=/trunk/; revision=15975
-rw-r--r-- | widgets/misc/ChangeLog | 5 | ||||
-rw-r--r-- | widgets/misc/e-multi-config-dialog.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index aa93e38678..e2d05939f4 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,8 @@ +2002-03-07 Ettore Perazzoli <ettore@ximian.com> + + * e-multi-config-dialog.c: Don't display a header in the table on + the left. + 2002-03-05 Ettore Perazzoli <ettore@ximian.com> * test-multi-config-dialog.c: New. diff --git a/widgets/misc/e-multi-config-dialog.c b/widgets/misc/e-multi-config-dialog.c index 74c0a883e8..ae9cf31c70 100644 --- a/widgets/misc/e-multi-config-dialog.c +++ b/widgets/misc/e-multi-config-dialog.c @@ -60,12 +60,13 @@ struct _EMultiConfigDialogPrivate { static char *list_e_table_spec = "<ETableSpecification cursor-mode=\"line\"" - " selection-mode=\"single\">" + " selection-mode=\"browse\"" + " no-headers=\"true\">" " <ETableColumn model_col=\"0\"" " expansion=\"1.0\"" + " cell=\"string\"" " minimum_width=\"32\"" " resizable=\"true\"" - " cell=\"string\"" " _title=\"blah\"" " compare=\"string\"/>" " <ETableState>" |