diff pidgin/gtkroomlist.c @ 21788:29a4b8e5f4f6

Disable roomlist tooltips until I (or anyone else!) fix them to be less stupid
author Stu Tomlinson <stu@nosnilmot.com>
date Wed, 05 Dec 2007 21:08:52 +0000
parents a04a0d3f9b4f
children 6bf73aea6450 a3f0c30eb0bf
line wrap: on
line diff
--- a/pidgin/gtkroomlist.c	Wed Dec 05 20:45:38 2007 +0000
+++ b/pidgin/gtkroomlist.c	Wed Dec 05 21:08:52 2007 +0000
@@ -963,8 +963,10 @@
 	g_signal_connect(G_OBJECT(tree), "button-press-event", G_CALLBACK(room_click_cb), list);
 	g_signal_connect(G_OBJECT(tree), "row-expanded", G_CALLBACK(row_expanded_cb), list);
 	g_signal_connect(G_OBJECT(tree), "row-activated", G_CALLBACK(row_activated_cb), list);
+#if 0 /* uncomment this when the tooltips are slightly less annoying and more well behaved */
 	g_signal_connect(G_OBJECT(tree), "motion-notify-event", G_CALLBACK(row_motion_cb), list);
 	g_signal_connect(G_OBJECT(tree), "leave-notify-event", G_CALLBACK(row_leave_cb), list);
+#endif
 
 	/* Enable CTRL+F searching */
 	gtk_tree_view_set_search_column(GTK_TREE_VIEW(tree), NAME_COLUMN);