commit 9f9b98a511e3c2492151647ba574a6a83beaa528
parent 9b02796e690b8c8c511da05496e48751fcce1c88
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
@@ -5480,7 +5480,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)