empathy r1139 - trunk/libempathy-gtk
- From: xclaesse svn gnome org
- To: svn-commits-list gnome org
- Subject: empathy r1139 - trunk/libempathy-gtk
- Date: Mon, 2 Jun 2008 16:34:26 +0000 (UTC)
Author: xclaesse
Date: Mon Jun 2 16:34:25 2008
New Revision: 1139
URL: http://svn.gnome.org/viewvc/empathy?rev=1139&view=rev
Log:
Only display tooltip on the contact list if running with GTK >= 2.12.10.
Modified:
trunk/libempathy-gtk/empathy-contact-list-view.c
Modified: trunk/libempathy-gtk/empathy-contact-list-view.c
==============================================================================
--- trunk/libempathy-gtk/empathy-contact-list-view.c (original)
+++ trunk/libempathy-gtk/empathy-contact-list-view.c Mon Jun 2 16:34:25 2008
@@ -131,6 +131,11 @@
GtkTreeIter iter;
GtkTreePath *path;
+ /* FIXME: We need GTK version >= 2.12.10. See GNOME bug #504087 */
+ if (100 * gtk_minor_version + gtk_micro_version < 1210) {
+ return FALSE;
+ }
+
if (!gtk_tree_view_get_tooltip_context (GTK_TREE_VIEW (view), &x, &y,
keyboard_mode,
&model, &path, &iter)) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]