aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-05-07 05:28:42 +0800
committerChris Lahey <clahey@src.gnome.org>2000-05-07 05:28:42 +0800
commit073f72e4f3827d51331cecf6800ae811b4776a08 (patch)
tree50b05c1daf81510a350517b1855f9497b9ede7cb /composer
parentd8c0b9eff5d53af5fe51cd6fd56eb2cacd5c99f4 (diff)
downloadgsoc2013-evolution-073f72e4f3827d51331cecf6800ae811b4776a08.tar
gsoc2013-evolution-073f72e4f3827d51331cecf6800ae811b4776a08.tar.gz
gsoc2013-evolution-073f72e4f3827d51331cecf6800ae811b4776a08.tar.bz2
gsoc2013-evolution-073f72e4f3827d51331cecf6800ae811b4776a08.tar.lz
gsoc2013-evolution-073f72e4f3827d51331cecf6800ae811b4776a08.tar.xz
gsoc2013-evolution-073f72e4f3827d51331cecf6800ae811b4776a08.tar.zst
gsoc2013-evolution-073f72e4f3827d51331cecf6800ae811b4776a08.zip
Turned off focus in the To, Cc, and Bcc buttons.
2000-05-06 Christopher James Lahey <clahey@helixcode.com> * e-msg-composer-hdrs.c: Turned off focus in the To, Cc, and Bcc buttons. svn path=/trunk/; revision=2838
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog5
-rw-r--r--composer/e-msg-composer-hdrs.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index a02167ef55..5dba1a7048 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-06 Christopher James Lahey <clahey@helixcode.com>
+
+ * e-msg-composer-hdrs.c: Turned off focus in the To, Cc, and Bcc
+ buttons.
+
2000-05-02 Matt Loper <matt@helixcode.com>
* Makefile.am: set G_LOG_DOMAIN.
diff --git a/composer/e-msg-composer-hdrs.c b/composer/e-msg-composer-hdrs.c
index fb6d5adf3f..0295426b8a 100644
--- a/composer/e-msg-composer-hdrs.c
+++ b/composer/e-msg-composer-hdrs.c
@@ -80,6 +80,7 @@ add_header (EMsgComposerHdrs *hdrs,
if (addrbook_button) {
label = gtk_button_new_with_label (name);
+ GTK_OBJECT_UNSET_FLAGS(label, GTK_CAN_FOCUS);
gtk_signal_connect (GTK_OBJECT (label), "clicked",
GTK_SIGNAL_FUNC (address_button_clicked_cb),
hdrs);