diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-format-html-display.c | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 7313caf07a..3609305a30 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2006-02-27 Jeffrey Stedfast <fejj@novell.com> + + * em-format-html-display.c (efhd_xpkcs7mime_validity_clicked): + Make the verify/decrypt gpg diagnostic text selectable in the + security dialog that comes up when you click the button in a + message. Fixes bug #268414. + 2006-02-24 Sankar P <psankar@novell.com> * em-account-editor.c: (emae_check_complete) diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index 1f3295decd..6ebf316d54 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -922,6 +922,7 @@ efhd_xpkcs7mime_validity_clicked(GtkWidget *button, EMFormatHTMLPObject *pobject w = gtk_label_new(po->valid->sign.description); gtk_misc_set_alignment((GtkMisc *)w, 0.0, 0.5); gtk_label_set_line_wrap((GtkLabel *)w, FALSE); + gtk_label_set_selectable((GtkLabel *)w, TRUE); gtk_box_pack_start((GtkBox *)vbox, w, TRUE, TRUE, 6); } @@ -939,6 +940,7 @@ efhd_xpkcs7mime_validity_clicked(GtkWidget *button, EMFormatHTMLPObject *pobject w = gtk_label_new(po->valid->encrypt.description); gtk_misc_set_alignment((GtkMisc *)w, 0.0, 0.5); gtk_label_set_line_wrap((GtkLabel *)w, FALSE); + gtk_label_set_selectable((GtkLabel *)w, TRUE); gtk_box_pack_start((GtkBox *)vbox, w, TRUE, TRUE, 6); } |