From 539b930f20e94817cdbfdd76ae359e0f1f30533e Mon Sep 17 00:00:00 2001 From: Armin Burgmeier Date: Sat, 2 Jun 2007 16:00:55 +0000 Subject: [PATCH] 2007-06-02 Armin Burgmeier * src/maemo/easysetup/modest-easysetup-wizard.c: Added a note that the server type cannot be changed in future to the incoming details page when creating an account. This fixes projects.maemo.org bug NB#59029. pmo-trunk-r2046 --- ChangeLog2 | 6 ++++++ src/maemo/easysetup/modest-easysetup-wizard.c | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog2 b/ChangeLog2 index 6f11916..f04e49a 100644 --- a/ChangeLog2 +++ b/ChangeLog2 @@ -1,5 +1,11 @@ 2007-06-02 Armin Burgmeier + * src/maemo/easysetup/modest-easysetup-wizard.c: Added a note that the + server type cannot be changed in future to the incoming details page + when creating an account. This fixes projects.maemo.org bug NB#59029. + +2007-06-02 Armin Burgmeier + * src/maemo/easysetup/modest-easysetup-wizard.c: Made labels wrapping and assigned max width chars so that they wrap instead of being truncated. Fixes projects.maemo.org bug NB#56126. diff --git a/src/maemo/easysetup/modest-easysetup-wizard.c b/src/maemo/easysetup/modest-easysetup-wizard.c index 80e5cbd..6a32d55 100644 --- a/src/maemo/easysetup/modest-easysetup-wizard.c +++ b/src/maemo/easysetup/modest-easysetup-wizard.c @@ -565,6 +565,13 @@ static void on_combo_servertype_changed(GtkComboBox *combobox, gpointer user_dat static GtkWidget* create_page_custom_incoming (ModestEasysetupWizardDialog *self) { GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE); + + /* Show note that account type cannot be changed in future: */ + GtkWidget *label = gtk_label_new (_("mcen_ia_emailsetup_account_type")); + gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); + gtk_label_set_max_width_chars (GTK_LABEL (label), 40); + gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, MODEST_MARGIN_HALF); + gtk_widget_show (label); /* Create a size group to be used by all captions. * Note that HildonCaption does not create a default size group if we do not specify one. -- 1.7.9.5