gtk-demo: Make arrowing in suggestionentry scroll the dropdown

This commit is contained in:
Benjamin Otte 2023-03-26 00:58:20 +01:00
parent b64dc75e3a
commit c278c78378

View File

@ -801,7 +801,7 @@ suggestion_entry_key_pressed (GtkEventControllerKey *controller,
selected = matches - 1; selected = matches - 1;
} }
gtk_single_selection_set_selected (self->selection, selected); gtk_list_view_scroll_to (GTK_LIST_VIEW (self->list), selected, GTK_LIST_SCROLL_SELECT, NULL);
return TRUE; return TRUE;
} }