diff options
author | Milan Crha <mcrha@redhat.com> | 2008-06-09 19:09:01 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-06-09 19:09:01 +0800 |
commit | 22dc0c949c909394889c9b56d63240ad271eb3f8 (patch) | |
tree | c66112101dc8756973eba70b241218e4ca590c47 /mail/em-composer-prefs.c | |
parent | f1cfc8c031380ebd6f4c5fcd681ba1cc4e77f967 (diff) | |
download | gsoc2013-evolution-22dc0c949c909394889c9b56d63240ad271eb3f8.tar.gz gsoc2013-evolution-22dc0c949c909394889c9b56d63240ad271eb3f8.tar.zst gsoc2013-evolution-22dc0c949c909394889c9b56d63240ad271eb3f8.zip |
** Fix for bug #535791
2008-06-09 Milan Crha <mcrha@redhat.com>
** Fix for bug #535791
* mail-config.glade:
* em-composer-prefs.c: (em_composer_prefs_construct):
New UI option to let uset choose whether start typing at the bottom
of the document or not on replying.
* em-utils.h: (em_utils_message_to_html):
* em-utils.c: (em_utils_message_to_html):
* em-composer-utils.c: (forward_non_attached), (composer_set_body):
Take care of /apps/evolution/mail/composer/reply_start_bottom.
svn path=/trunk/; revision=35621
Diffstat (limited to 'mail/em-composer-prefs.c')
-rw-r--r-- | mail/em-composer-prefs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/em-composer-prefs.c b/mail/em-composer-prefs.c index 41975589ef..87cdd0d4de 100644 --- a/mail/em-composer-prefs.c +++ b/mail/em-composer-prefs.c @@ -939,6 +939,12 @@ em_composer_prefs_construct (EMComposerPrefs *prefs) gtk_widget_set_sensitive (widget, FALSE); gconf_bridge_bind_property (bridge, key, G_OBJECT (widget), "active"); + key = "/apps/evolution/mail/composer/reply_start_bottom"; + widget = glade_xml_get_widget (gui, "chkReplyStartBottom"); + if (!gconf_client_key_is_writable (client, key, NULL)) + gtk_widget_set_sensitive (widget, FALSE); + gconf_bridge_bind_property (bridge, key, G_OBJECT (widget), "active"); + key = "/apps/evolution/mail/composer/top_signature"; widget = glade_xml_get_widget (gui, "chkTopSignature"); if (!gconf_client_key_is_writable (client, key, NULL)) |