diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-10-23 05:19:07 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-10-23 05:19:07 +0800 |
commit | e42e84e2bf7d38341ad44695cbf90df933d8c580 (patch) | |
tree | b6829873a1cfab5aa6108fcea22403e7c0a2eba5 /mail/message-list.c | |
parent | b2fb54f39b6f1a61625a9efbe09150e6a816eb92 (diff) | |
download | gsoc2013-evolution-e42e84e2bf7d38341ad44695cbf90df933d8c580.tar.gz gsoc2013-evolution-e42e84e2bf7d38341ad44695cbf90df933d8c580.tar.zst gsoc2013-evolution-e42e84e2bf7d38341ad44695cbf90df933d8c580.zip |
Make the vertical toolbar always visible in the message list and the
message view (patch pulled up from the evolution-0-6-branch).
svn path=/trunk/; revision=6112
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 11c75ad9b5..c688456474 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -987,11 +987,12 @@ message_list_init (GtkObject *object) spec = message_list_get_layout (message_list); extras = message_list_create_extras(); - message_list->etable = e_table_scrolled_new ( - message_list->table_model, extras, spec, NULL); + message_list->etable = e_table_scrolled_new (message_list->table_model, extras, spec, NULL); g_free (spec); gtk_object_sink(GTK_OBJECT(extras)); + e_scroll_frame_set_policy (E_SCROLL_FRAME (message_list->etable), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); + gtk_object_set(GTK_OBJECT(message_list->etable), "drawfocus", FALSE, NULL); |