diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-05-04 04:19:58 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-06-03 11:00:38 +0800 |
commit | 8db3da39d77c5c360e4bfe29cf652e333e737374 (patch) | |
tree | bc83683a5f411f3a75cedf6c7307fe90c8f67c0a /modules | |
parent | f6e5efd36da4cc2249d2208faceddee1ab7ebd1c (diff) | |
download | gsoc2013-evolution-8db3da39d77c5c360e4bfe29cf652e333e737374.tar gsoc2013-evolution-8db3da39d77c5c360e4bfe29cf652e333e737374.tar.gz gsoc2013-evolution-8db3da39d77c5c360e4bfe29cf652e333e737374.tar.bz2 gsoc2013-evolution-8db3da39d77c5c360e4bfe29cf652e333e737374.tar.lz gsoc2013-evolution-8db3da39d77c5c360e4bfe29cf652e333e737374.tar.xz gsoc2013-evolution-8db3da39d77c5c360e4bfe29cf652e333e737374.tar.zst gsoc2013-evolution-8db3da39d77c5c360e4bfe29cf652e333e737374.zip |
Revert "Bug #669463 - HTML signature opens in editor as Plain text"
This reverts commit f25826211b007a615118f9b583a66d7027eddeac.
Not an issue on the account-mgmt branch. We can do without this hack.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mail/e-mail-shell-backend.c | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/modules/mail/e-mail-shell-backend.c b/modules/mail/e-mail-shell-backend.c index 2633b72e4e..43a4cf5789 100644 --- a/modules/mail/e-mail-shell-backend.c +++ b/modules/mail/e-mail-shell-backend.c @@ -40,7 +40,6 @@ #include <composer/e-msg-composer.h> #include <widgets/misc/e-preferences-window.h> -#include <widgets/misc/e-signature-editor.h> #include <widgets/misc/e-web-view.h> #include <libemail-engine/e-mail-folder-utils.h> @@ -364,6 +363,7 @@ mail_shell_backend_window_added_cb (GtkApplication *application, /* This applies to both the composer and signature editor. */ if (GTKHTML_IS_EDITOR (window)) { + EShellSettings *shell_settings; GList *spell_languages; gboolean active = TRUE; @@ -372,19 +372,14 @@ mail_shell_backend_window_added_cb (GtkApplication *application, GTKHTML_EDITOR (window), spell_languages); g_list_free (spell_languages); - if (!E_IS_SIGNATURE_EDITOR (window) || - !e_signature_editor_get_editing_old (E_SIGNATURE_EDITOR (window))) { - EShellSettings *shell_settings; + shell_settings = e_shell_get_shell_settings (shell); - shell_settings = e_shell_get_shell_settings (shell); + /* Express mode does not honor this setting. */ + if (!e_shell_get_express_mode (shell)) + active = e_shell_settings_get_boolean ( + shell_settings, "composer-format-html"); - /* Express mode does not honor this setting. */ - if (!e_shell_get_express_mode (shell)) - active = e_shell_settings_get_boolean ( - shell_settings, "composer-format-html"); - - gtkhtml_editor_set_html_mode (GTKHTML_EDITOR (window), active); - } + gtkhtml_editor_set_html_mode (GTKHTML_EDITOR (window), active); } if (E_IS_MSG_COMPOSER (window)) { |