* src/maemo/modest-signature-editor-dialog.c
authorAlberto Garcia <agarcia@igalia.com>
Tue, 19 Feb 2008 17:52:03 +0000 (17:52 +0000)
committerAlberto Garcia <agarcia@igalia.com>
Tue, 19 Feb 2008 17:52:03 +0000 (17:52 +0000)
(modest_signature_editor_dialog_set_settings):
Don't let the "Signature for account" label be truncated
Partially fixes NB#80914

pmo-trunk-r4202

src/maemo/modest-signature-editor-dialog.c

index 793d718..7585743 100644 (file)
@@ -196,7 +196,7 @@ modest_signature_editor_dialog_set_settings (
        gchar* label_text = g_strdup_printf (_("mcen_ia_email_signatures_edit_dlg_label"), 
                account_title);
        gtk_label_set_text (GTK_LABEL (priv->label), label_text);
-       gtk_label_set_ellipsize (GTK_LABEL (priv->label),  PANGO_ELLIPSIZE_END);
+       gtk_label_set_ellipsize (GTK_LABEL (priv->label),  PANGO_ELLIPSIZE_NONE);
        g_free (label_text);
        
        gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->checkbox_use), use_signature);