Mercurial > pidgin
changeset 18632:e47ff6610fc7
Make eventbox input only in infopane. Thanks fmoo.
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Tue, 24 Jul 2007 22:21:55 +0000 |
parents | 462737382c64 |
children | 075c8dab16e2 41fc033b63af |
files | pidgin/gtkconv.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkconv.c Tue Jul 24 21:36:47 2007 +0000 +++ b/pidgin/gtkconv.c Tue Jul 24 22:21:55 2007 +0000 @@ -4410,6 +4410,9 @@ /* Setup the info pane */ event_box = gtk_event_box_new(); +#if GTK_CHECK_VERSION(2,4,0) + gtk_event_box_set_visible_window(GTK_EVENT_BOX(event_box), FALSE); +#endif gtk_widget_show(event_box); gtkconv->infopane_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), event_box, FALSE, FALSE, 0);