Mercurial > pidgin
view plugins/perl/libgaimperl.c @ 12827:0f40c44348f4
[gaim-migrate @ 15175]
SF Patch #1402533 from Sadrul
" This patch pops up the dropdown when mouse-wheel is
scrolled over the statusbox. This will perhaps be
`better' (as in `less confusing' or something) for many
users."
The original patch didn't stop the scroll wheel action from applying after
the dropdown popped up (at least on my system with
GtkComboBox::appears-as-list = 1), so I fixed that.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Wed, 11 Jan 2006 07:03:58 +0000 |
parents | a4229dd9c76a |
children |
line wrap: on
line source
#include <gmodule.h> void __attribute__ ((constructor)) my_init(void); void __attribute__ ((constructor)) my_init() { /* Very evil hack...puts perl.so's symbols in the global table * but does not create a circular dependancy because g_module_open * will only open the library once. */ g_module_open("perl.so", 0); }