Fixes NB#124313, remove new email notifications when the account is removed
[modest] / src / hildon2 / modest-country-picker.c
index 17d6776..6e56d78 100644 (file)
@@ -188,6 +188,7 @@ modest_country_picker_load_data(ModestCountryPicker *self)
                                         0, model);
        hildon_touch_selector_entry_set_input_mode (HILDON_TOUCH_SELECTOR_ENTRY (selector),
                                                    HILDON_GTK_INPUT_MODE_ALPHA |
+                                                   HILDON_GTK_INPUT_MODE_SPECIAL |
                                                    HILDON_GTK_INPUT_MODE_AUTOCAP);
 
 
@@ -200,10 +201,15 @@ ModestCountryPicker*
 modest_country_picker_new (HildonSizeType size,
                           HildonButtonArrangement arrangement)
 {
-       return g_object_new (MODEST_TYPE_COUNTRY_PICKER, 
-                            "arrangement", arrangement,
-                            "size", size,
-                            NULL);
+       ModestCountryPicker *picker = g_object_new (MODEST_TYPE_COUNTRY_PICKER, 
+                                                   "arrangement", arrangement,
+                                                   "size", size,
+                                                   NULL);
+
+       /* For theming purpouses. Widget name must end in Button-finger */
+       gtk_widget_set_name ((GtkWidget *) picker, "ModestCountryPickerButton-finger");
+
+       return picker;
 }
 
 /**