diff options
author | Dan Vrátil <dvratil@redhat.com> | 2012-06-08 22:09:53 +0800 |
---|---|---|
committer | Dan Vrátil <dvratil@redhat.com> | 2012-06-08 23:08:00 +0800 |
commit | c4071b0a1d38a478d3ba51c81af222cdeb4ed4fd (patch) | |
tree | 52b0f8825f9defd6accf554c5b26ae1c8c7ead94 /mail/e-mail-display.c | |
parent | a601031be2fa34f3f860179c8448cc0b04d4bfa4 (diff) | |
download | gsoc2013-evolution-c4071b0a1d38a478d3ba51c81af222cdeb4ed4fd.tar.gz gsoc2013-evolution-c4071b0a1d38a478d3ba51c81af222cdeb4ed4fd.tar.zst gsoc2013-evolution-c4071b0a1d38a478d3ba51c81af222cdeb4ed4fd.zip |
Fix displayed message headers
The new formatter was ignoring selected headers, always displaying
only From, To, Subject and Date (default headers).
Handling of the currently displayed headers has been moved to
EMailConfigFormatHTML extension, because it is related to
configuration of EMailFormatter, rather then EMailReader.
Diffstat (limited to 'mail/e-mail-display.c')
-rw-r--r-- | mail/e-mail-display.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/e-mail-display.c b/mail/e-mail-display.c index 4f72e843f6..33922d8c0a 100644 --- a/mail/e-mail-display.c +++ b/mail/e-mail-display.c @@ -1552,6 +1552,8 @@ e_mail_display_set_mode (EMailDisplay *display, G_CALLBACK (e_mail_display_reload), display, "swapped-signal::notify::header-color", G_CALLBACK (e_mail_display_reload), display, + "swapped-signal::need-redraw", + G_CALLBACK (e_mail_display_reload), display, NULL); e_mail_display_reload (display); |