From a3649036506cb9be9f8bb39fff3ef26f4dc24744 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Fri, 9 Dec 2005 09:05:58 +0000 Subject: [PATCH] 2005-12-09 [paul] 1.9.100cvs80 * src/plugins/pgpcore/passphrase.c wrap the label in the dialog --- ChangeLog | 5 +++++ PATCHSETS | 1 + configure.ac | 2 +- src/plugins/pgpcore/passphrase.c | 1 + 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9f84a2c23..af9f1f568 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-12-09 [paul] 1.9.100cvs80 + + * src/plugins/pgpcore/passphrase.c + wrap the label in the dialog + 2005-12-09 [cleroy] 1.9.100cvs79 * src/plugins/pgpcore/sgpgme.c diff --git a/PATCHSETS b/PATCHSETS index 62dcad034..124777ac4 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1063,3 +1063,4 @@ ( cvs diff -u -r 1.213.2.69 -r 1.213.2.70 src/folder.c; ) > 1.9.100cvs77.patchset ( cvs diff -u -r 1.13.2.9 -r 1.13.2.10 src/common/plugin.c; ) > 1.9.100cvs78.patchset ( cvs diff -u -r 1.1.2.13 -r 1.1.2.14 src/plugins/pgpcore/sgpgme.c; ) > 1.9.100cvs79.patchset +( cvs diff -u -r 1.1.2.7 -r 1.1.2.8 src/plugins/pgpcore/passphrase.c; ) > 1.9.100cvs80.patchset diff --git a/configure.ac b/configure.ac index 8b8197b32..4fc80e21e 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=100 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=79 +EXTRA_VERSION=80 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/plugins/pgpcore/passphrase.c b/src/plugins/pgpcore/passphrase.c index 6935c2277..fac287eac 100644 --- a/src/plugins/pgpcore/passphrase.c +++ b/src/plugins/pgpcore/passphrase.c @@ -274,6 +274,7 @@ create_description(const gchar *uid_hint, const gchar *pass_hint, gint prev_bad) label = gtk_label_new (buf); gtk_label_set_use_markup(GTK_LABEL (label), TRUE); gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_label_set_line_wrap(GTK_LABEL (label), TRUE); g_free (buf); return label;