* Fixes NB#93387, Cc and Bcc are hidden by default
authorSergio Villar Senin <svillar@igalia.com>
Mon, 24 Nov 2008 15:43:52 +0000 (15:43 +0000)
committerSergio Villar Senin <svillar@igalia.com>
Mon, 24 Nov 2008 15:43:52 +0000 (15:43 +0000)
pmo-trunk-r6385

src/widgets/modest-msg-edit-window-ui.h

index 0035813..7714e02 100644 (file)
@@ -86,8 +86,13 @@ static const GtkActionEntry modest_msg_edit_action_entries [] = {
 static const GtkToggleActionEntry modest_msg_edit_toggle_action_entries [] = {
 
        /* VIEW */
-       { "ViewCcField",   NULL,    N_("mcen_me_editor_showcc"),  NULL, NULL,  G_CALLBACK (modest_ui_actions_on_toggle_show_cc), TRUE  },
+#ifdef MODEST_TOOLKIT_HILDON2
+       { "ViewCcField",   NULL,    N_("mcen_me_editor_showcc"),  NULL, NULL,  G_CALLBACK (modest_ui_actions_on_toggle_show_cc), FALSE },
+       { "ViewBccField",  NULL,    N_("mcen_me_editor_showbcc"), NULL, NULL, G_CALLBACK (modest_ui_actions_on_toggle_show_bcc), FALSE },
+#else
+       { "ViewCcField",   NULL,    N_("mcen_me_editor_showcc"),  NULL, NULL,  G_CALLBACK (modest_ui_actions_on_toggle_show_cc), TRUE },
        { "ViewBccField",  NULL,    N_("mcen_me_editor_showbcc"), NULL, NULL, G_CALLBACK (modest_ui_actions_on_toggle_show_bcc), TRUE },
+#endif
 
        /* Fullscreen toggle */
        { "ViewToggleFullscreen", NULL, N_("mcen_me_inbox_fullscreen"), NULL, NULL, G_CALLBACK (modest_ui_actions_on_toggle_fullscreen), FALSE},