2007-08-15 Murray Cumming <murrayc@murrayc.com>
authorMurray Cumming <murrayc@murrayc.com>
Wed, 15 Aug 2007 15:06:41 +0000 (15:06 +0000)
committerMurray Cumming <murrayc@murrayc.com>
Wed, 15 Aug 2007 15:06:41 +0000 (15:06 +0000)
* src/widgets/modest-recpt-editor.c:
(modest_recpt_editor_instance_init): Turn off hildon auto-capitalization,
to fix projects.maemo.org bug NB#63789.

pmo-trunk-r2997

ChangeLog2
src/widgets/modest-recpt-editor.c

index 13c163b..579e6c1 100644 (file)
@@ -1,5 +1,11 @@
 2007-08-15  Murray Cumming  <murrayc@murrayc.com>
 
+       * src/widgets/modest-recpt-editor.c:
+       (modest_recpt_editor_instance_init): Turn off hildon auto-capitalization,
+       to fix projects.maemo.org bug NB#63789.
+
+2007-08-15  Murray Cumming  <murrayc@murrayc.com>
+
        * src/modest-tny-account-store.c: Added volume_path_is_mounted().
        (modest_tny_account_store_new): Properly detect the memory card at 
        startup, and add an account for it.
index c713db9..448bebe 100644 (file)
@@ -333,6 +333,10 @@ modest_recpt_editor_instance_init (GTypeInstance *instance, gpointer g_class)
        gtk_container_add (GTK_CONTAINER (priv->abook_button), abook_icon);
 
        priv->text_view = gtk_text_view_new ();
+       /* Auto-capitalization is the default, so let's turn it off: */
+       hildon_gtk_text_view_set_input_mode (GTK_TEXT_VIEW (priv->text_view), 
+               HILDON_GTK_INPUT_MODE_FULL);
+       
        priv->recipients = NULL;
 
        priv->scrolled_window = modest_scroll_text_new (GTK_TEXT_VIEW (priv->text_view), 1024);