diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2007-06-15 16:25:32 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2007-06-15 16:25:32 +0000 |
commit | b2defcc5980cf74899fbd5dbe5a5ffe30d6a7292 (patch) | |
tree | 25c05d970c9c3b460305cdf1736651368cf38521 /app-crypt/pinentry/files | |
parent | remove version using obsolete webapp-apache eclass, bug #182129 (diff) | |
download | gentoo-2-b2defcc5980cf74899fbd5dbe5a5ffe30d6a7292.tar.gz gentoo-2-b2defcc5980cf74899fbd5dbe5a5ffe30d6a7292.tar.bz2 gentoo-2-b2defcc5980cf74899fbd5dbe5a5ffe30d6a7292.zip |
Fix gtk2+ grab issue, bug#165493, thanks to Vincent Pit
(Portage version: 2.1.2.9)
Diffstat (limited to 'app-crypt/pinentry/files')
-rw-r--r-- | app-crypt/pinentry/files/digest-pinentry-0.7.2-r4 | 3 | ||||
-rw-r--r-- | app-crypt/pinentry/files/pinentry-0.7.2-grab.patch | 15 |
2 files changed, 18 insertions, 0 deletions
diff --git a/app-crypt/pinentry/files/digest-pinentry-0.7.2-r4 b/app-crypt/pinentry/files/digest-pinentry-0.7.2-r4 new file mode 100644 index 000000000000..bcde47e68cda --- /dev/null +++ b/app-crypt/pinentry/files/digest-pinentry-0.7.2-r4 @@ -0,0 +1,3 @@ +MD5 55626ce13ed76d82ec5330d19bdf3ab4 pinentry-0.7.2.tar.gz 398775 +RMD160 db667256801545ef065d9d47cafe5e67137fa6ce pinentry-0.7.2.tar.gz 398775 +SHA256 fbdb15ef6b05c5435745d1dde90cf4c82dd512c983d7a178cd25bdbe882dd668 pinentry-0.7.2.tar.gz 398775 diff --git a/app-crypt/pinentry/files/pinentry-0.7.2-grab.patch b/app-crypt/pinentry/files/pinentry-0.7.2-grab.patch new file mode 100644 index 000000000000..c88aa62f3115 --- /dev/null +++ b/app-crypt/pinentry/files/pinentry-0.7.2-grab.patch @@ -0,0 +1,15 @@ +--- pinentry-0.7.2/gtk+-2/pinentry-gtk-2.c 2007-06-15 15:53:28.000000000 +0200 ++++ pinentry-0.7.2/gtk+-2/pinentry-gtk-2.c 2007-06-15 16:01:57.000000000 +0200 +@@ -207,10 +207,10 @@ + if (!confirm_mode) + { + g_signal_connect (G_OBJECT (win), +- pinentry->grab ? "map-event" : "focus-in-event", ++ pinentry->grab ? "expose-event" : "focus-in-event", + G_CALLBACK (grab_keyboard), NULL); + g_signal_connect (G_OBJECT (win), +- pinentry->grab ? "unmap-event" : "focus-out-event", ++ pinentry->grab ? "no-expose-event" : "focus-out-event", + G_CALLBACK (ungrab_keyboard), NULL); + } + gtk_window_add_accel_group (GTK_WINDOW (win), acc); |