diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-06-02 07:56:40 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-06-02 07:56:40 +0800 |
commit | 94b600a5003e24183ce33b6a3c23229f94d79e5c (patch) | |
tree | 37dff92f0fb10f8aba766a0f182cf2432c43d177 /mail | |
parent | 828df57f1f940bad350aada8d90e5f860fefc611 (diff) | |
download | gsoc2013-evolution-94b600a5003e24183ce33b6a3c23229f94d79e5c.tar gsoc2013-evolution-94b600a5003e24183ce33b6a3c23229f94d79e5c.tar.gz gsoc2013-evolution-94b600a5003e24183ce33b6a3c23229f94d79e5c.tar.bz2 gsoc2013-evolution-94b600a5003e24183ce33b6a3c23229f94d79e5c.tar.lz gsoc2013-evolution-94b600a5003e24183ce33b6a3c23229f94d79e5c.tar.xz gsoc2013-evolution-94b600a5003e24183ce33b6a3c23229f94d79e5c.tar.zst gsoc2013-evolution-94b600a5003e24183ce33b6a3c23229f94d79e5c.zip |
Turn off the grid in our ETable.
2000-06-01 Christopher James Lahey <clahey@helixcode.com>
* message-list.c (message_list_init): Turn off the grid in our
ETable.
svn path=/trunk/; revision=3349
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/message-list.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 2da03ce276..f182c5c753 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-06-01 Christopher James Lahey <clahey@helixcode.com> + + * message-list.c (message_list_init): Turn off the grid in our + ETable. + 2000-06-01 Dan Winship <danw@helixcode.com> * mail-format.c (write_headers): Oops. This needs to take a diff --git a/mail/message-list.c b/mail/message-list.c index e8c15a7630..56dd06526e 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -615,6 +615,7 @@ message_list_init (GtkObject *object) gtk_object_set(GTK_OBJECT(message_list->etable), "cursor_mode", E_TABLE_CURSOR_LINE, "drawfocus", FALSE, + "drawgrid", FALSE, NULL); gtk_signal_connect (GTK_OBJECT (message_list->etable), "realize", |