diff options
author | Milan Crha <mcrha@redhat.com> | 2011-09-26 18:26:59 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-26 18:56:08 +0800 |
commit | 5fb2bb4edf3caa5c25562afa981c1a2a6be42f3d (patch) | |
tree | b89e6e0fa8bc092405735b0ea5c6565da7054d92 /mail/em-format-html-display.c | |
parent | b24376fea6f8a1e3cb8d27680262ac5d1543e809 (diff) | |
download | gsoc2013-evolution-5fb2bb4edf3caa5c25562afa981c1a2a6be42f3d.tar gsoc2013-evolution-5fb2bb4edf3caa5c25562afa981c1a2a6be42f3d.tar.gz gsoc2013-evolution-5fb2bb4edf3caa5c25562afa981c1a2a6be42f3d.tar.bz2 gsoc2013-evolution-5fb2bb4edf3caa5c25562afa981c1a2a6be42f3d.tar.lz gsoc2013-evolution-5fb2bb4edf3caa5c25562afa981c1a2a6be42f3d.tar.xz gsoc2013-evolution-5fb2bb4edf3caa5c25562afa981c1a2a6be42f3d.tar.zst gsoc2013-evolution-5fb2bb4edf3caa5c25562afa981c1a2a6be42f3d.zip |
Bug #659828 - Selecting a message with a sound attached loses focus
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r-- | mail/em-format-html-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index dcaafed57d..de165073ce 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -1208,7 +1208,7 @@ efhd_attachment_button (EMFormatHTML *efh, /* If the button is created, then give it focus after * it is realized, so that user can use arrow keys to scroll * message */ - if (efhd->priv->attachment_expanded || e_attachment_button_get_expanded (E_ATTACHMENT_BUTTON (widget))) { + if (efhd->priv->attachment_expanded) { g_signal_connect ( widget, "realize", G_CALLBACK (attachment_button_realized), NULL); |