diff options
author | Benjamin Otte <otte@redhat.com> | 2020-02-04 04:26:19 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2020-02-04 16:51:54 +0100 |
commit | 138de60ab27691fc5022732566b21634e13d0c3a (patch) | |
tree | 8f0a6682d4034133b64b75659e66d1a098394d0b /tests | |
parent | 571021cbc1f8480585db3bbe452578c6b4f880d1 (diff) | |
download | gtk+-138de60ab27691fc5022732566b21634e13d0c3a.tar.gz |
icontheme: Remove GENERIC_FALLBACKS
Instead, rely on people passing fallbacks explicitly.
Alternatively, GThemedIcon provides the functionality to create
fallbacks, which is what GtkImage and the testsuite now use.
That method is slightly better, too, so the expected test results
have been updated accordingly.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testdnd2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testdnd2.c b/tests/testdnd2.c index da076e59ef..615964ac9e 100644 --- a/tests/testdnd2.c +++ b/tests/testdnd2.c @@ -30,7 +30,7 @@ get_image_texture (GtkImage *image, NULL, width, 1, gtk_widget_get_direction (GTK_WIDGET (image)), - GTK_ICON_LOOKUP_GENERIC_FALLBACK); + 0); if (icon) texture = gtk_icon_download_texture (icon, NULL); g_object_unref (icon); |