diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-11-03 03:29:04 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-11-03 03:29:04 +0800 |
commit | 7b60f48dddc9b77260a508b3c4580b4b193440e1 (patch) | |
tree | d1a81c903ce9fae90df8ba7da6cf91fa32d36ded /mail | |
parent | 693f48ed4957cf642e8b6790f42502ea0196b8b9 (diff) | |
download | gsoc2013-evolution-7b60f48dddc9b77260a508b3c4580b4b193440e1.tar.gz gsoc2013-evolution-7b60f48dddc9b77260a508b3c4580b4b193440e1.tar.zst gsoc2013-evolution-7b60f48dddc9b77260a508b3c4580b4b193440e1.zip |
Turn on draw grid for the main ETable (this may not be working in ETable
2000-11-02 Christopher James Lahey <clahey@helixcode.com>
* message-list.c: Turn on draw grid for the main ETable (this may
not be working in ETable itself.)
svn path=/trunk/; revision=6358
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/message-list.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index f9eaf33960..f17a074338 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-11-02 Christopher James Lahey <clahey@helixcode.com> + + * message-list.c: Turn on draw grid for the main ETable (this may + not be working in ETable itself.) + 2000-11-01 Jeffrey Stedfast <fejj@helixcode.com> * mail-threads.c (mail_op_set_message): fmt argument should be diff --git a/mail/message-list.c b/mail/message-list.c index 832e7807d1..a3fd78c6bc 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -936,7 +936,7 @@ static char * message_list_get_layout (MessageList *message_list) { /* Message status, From, Subject, Sent Date */ - return g_strdup ("<ETableSpecification cursor-mode=\"line\">" + return g_strdup ("<ETableSpecification cursor-mode=\"line\" draw-grid=\"true\">" "<ETableColumn model_col= \"0\" pixbuf=\"status\" expansion=\"0.0\" minimum_width=\"18\" resizable=\"false\" cell=\"render_message_status\" compare=\"integer\" sortable=\"false\"/>" "<ETableColumn model_col= \"1\" pixbuf=\"flagged\" expansion=\"0.0\" minimum_width=\"20\" resizable=\"false\" cell=\"render_flagged\" compare=\"integer\"/>" "<ETableColumn model_col= \"2\" pixbuf=\"score\" expansion=\"0.0\" minimum_width=\"20\" resizable=\"false\" cell=\"render_score\" compare=\"integer\"/>" |