diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2006-02-28 01:54:47 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-02-28 01:54:47 +0800 |
commit | 2d3d3870233e63edf216d7054734e9c395cf27b6 (patch) | |
tree | 691a885309dc67044b34c0f7e09454a2d5c18c15 /mail | |
parent | 812f4f23dfc7ef29f6e72309d358be5646ae4bfa (diff) | |
download | gsoc2013-evolution-2d3d3870233e63edf216d7054734e9c395cf27b6.tar.gz gsoc2013-evolution-2d3d3870233e63edf216d7054734e9c395cf27b6.tar.zst gsoc2013-evolution-2d3d3870233e63edf216d7054734e9c395cf27b6.zip |
Make the verify/decrypt gpg diagnostic text selectable in the security
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.
svn path=/trunk/; revision=31596
Diffstat (limited to 'mail')
-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); } |