Issue #2828: Scrolling up with a mouse within a drop-down list.

Just another instance of the GtkCombo issue, same as #2642.
This commit is contained in:
Jehan 2019-01-20 11:51:21 +01:00
parent e269a837cd
commit 68a33ab5bd
1 changed files with 2 additions and 0 deletions

View File

@ -147,6 +147,8 @@ image_new_dialog_new (GimpContext *context)
"ellipsize", PANGO_ELLIPSIZE_NONE,
"focus-on-click", FALSE,
NULL);
/* See issues #2828 and #2642. */
gtk_combo_box_set_wrap_width (GTK_COMBO_BOX (private->combo), 1);
gtk_box_pack_start (GTK_BOX (hbox), private->combo, TRUE, TRUE, 0);
gtk_widget_show (private->combo);