commit ebc70c9165b0825f9997400947a33dab709c1929
parent 493ff6c54a1af3fabdd7e6ea3b2da19b21ebaad2
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Fri, 13 Jul 2018 15:17:58 +0200
Fix a condition typo in gtk_cmclist_motion().
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/gtk/gtkcmclist.c b/src/gtk/gtkcmclist.c
@@ -5468,7 +5468,7 @@ gtk_cmclist_motion (GtkWidget *widget,
row = CLAMP (row, 0, clist->rows - 1);
- if (button_actions & GTK_CMBUTTON_SELECTS &
+ if (button_actions & GTK_CMBUTTON_SELECTS &&
!g_object_get_data (G_OBJECT (widget), "gtk-site-data"))
{
if (row == clist->focus_row)