diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-09-19 22:16:00 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-09-19 22:16:00 +0800 |
commit | 59c5323452bd188d38934260dd89fcba5f8c1776 (patch) | |
tree | 4a2951659b853eb4798bdf10b245d9b59b951130 | |
parent | 99789261f769c8dd1d91377d7d792b4357d0c481 (diff) | |
download | gsoc2013-empathy-59c5323452bd188d38934260dd89fcba5f8c1776.tar gsoc2013-empathy-59c5323452bd188d38934260dd89fcba5f8c1776.tar.gz gsoc2013-empathy-59c5323452bd188d38934260dd89fcba5f8c1776.tar.bz2 gsoc2013-empathy-59c5323452bd188d38934260dd89fcba5f8c1776.tar.lz gsoc2013-empathy-59c5323452bd188d38934260dd89fcba5f8c1776.tar.xz gsoc2013-empathy-59c5323452bd188d38934260dd89fcba5f8c1776.tar.zst gsoc2013-empathy-59c5323452bd188d38934260dd89fcba5f8c1776.zip |
Fix condition to set labels selectable.
svn path=/trunk/; revision=1472
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index 66c03b434..acd3e19ee 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -530,7 +530,7 @@ contact_widget_contact_setup (EmpathyContactWidget *information) else { information->widget_account = gtk_label_new (NULL); - if (!information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) { + if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) { gtk_label_set_selectable (GTK_LABEL (information->widget_account), TRUE); } gtk_misc_set_alignment (GTK_MISC (information->widget_account), 0, 0.5); @@ -554,7 +554,7 @@ contact_widget_contact_setup (EmpathyContactWidget *information) else { information->widget_id = gtk_label_new (NULL); - if (!information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) { + if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) { gtk_label_set_selectable (GTK_LABEL (information->widget_id), TRUE); } gtk_misc_set_alignment (GTK_MISC (information->widget_id), 0, 0.5); @@ -578,7 +578,7 @@ contact_widget_contact_setup (EmpathyContactWidget *information) else { information->widget_alias = gtk_label_new (NULL); - if (!information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP) { + if (!(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) { gtk_label_set_selectable (GTK_LABEL (information->widget_alias), TRUE); } gtk_misc_set_alignment (GTK_MISC (information->widget_alias), 0, 0.5); |