2007-07-05 Murray Cumming <murrayc@murrayc.com>
authorMurray Cumming <murrayc@murrayc.com>
Thu, 5 Jul 2007 16:09:44 +0000 (16:09 +0000)
committerMurray Cumming <murrayc@murrayc.com>
Thu, 5 Jul 2007 16:09:44 +0000 (16:09 +0000)
* src/maemo/modest-address-book.c:
        (select_email_addrs_for_contact): Specify a default window size for the
        select-email-address dialog, so that it is probably big enough for the
        title. This should fix projects.maemo.org bug NB#62277.

pmo-trunk-r2596

ChangeLog2
src/maemo/modest-address-book.c

index 579cdb2..6f8e357 100644 (file)
@@ -1,5 +1,12 @@
 2007-07-05  Murray Cumming <murrayc@murrayc.com>
 
+       * src/maemo/modest-address-book.c:
+       (select_email_addrs_for_contact): Specify a default window size for the 
+       select-email-address dialog, so that it is probably big enough for the 
+       title. This should fix projects.maemo.org bug NB#62277.
+
+2007-07-05  Murray Cumming <murrayc@murrayc.com>
+
        * src/maemo/easysetup/modest-easysetup-wizard.c:
        (create_page_complete_easysetup): Use 
        gtk_widget_set_size() request to ensure that the text wraps 
index bad6c93..1d16bc6 100644 (file)
@@ -513,6 +513,10 @@ select_email_addrs_for_contact(GList * email_addr_list)
                                        _("mcen_bd_dialog_cancel"), GTK_RESPONSE_REJECT, NULL);
        gtk_dialog_set_has_separator(GTK_DIALOG(select_email_addr_dlg), FALSE);
 
+       /* Make the window approximately big enough, because it doesn't resize to be big enough 
+        * for the window title text: */
+       gtk_window_set_default_size (GTK_WINDOW (select_email_addr_dlg), 400, -1);
+
        scrolledwindow = gtk_scrolled_window_new(NULL, NULL);
        gtk_box_pack_start(GTK_BOX(GTK_DIALOG(select_email_addr_dlg)->vbox), scrolledwindow, TRUE,
                           TRUE, 0);