listbox: Activate single-click rows if n_press >= 1

Quickly clicking rows should always activate the row if
single-click-activation is enabled. Before, only the first click
(n_press == 1) would activate the row.
This commit is contained in:
Timm Bäder 2020-09-10 07:01:18 +02:00
parent a6f86d9c26
commit e669433cde

View File

@ -1832,9 +1832,9 @@ gtk_list_box_click_gesture_released (GtkGestureClick *gesture,
{ {
gboolean focus_on_click = gtk_widget_get_focus_on_click (GTK_WIDGET (box->active_row)); gboolean focus_on_click = gtk_widget_get_focus_on_click (GTK_WIDGET (box->active_row));
if (n_press == 1 && box->activate_single_click) if (box->activate_single_click)
gtk_list_box_select_and_activate_full (box, box->active_row, focus_on_click); gtk_list_box_select_and_activate_full (box, box->active_row, focus_on_click);
else else if (n_press == 2)
{ {
GdkEventSequence *sequence; GdkEventSequence *sequence;
GdkInputSource source; GdkInputSource source;