From 169795a374cbad05ef0c57d93cd01dd1abeacaef Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval Date: Mon, 21 Oct 2024 20:51:05 +0200 Subject: [PATCH] icontheme: Add GTK_ICON_LOOKUP_NONE From bindings it is not clear that one can pass `0` as a value. --- gtk/gtkicontheme.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gtk/gtkicontheme.h b/gtk/gtkicontheme.h index ef172ea755..1d8933d491 100644 --- a/gtk/gtkicontheme.h +++ b/gtk/gtkicontheme.h @@ -48,8 +48,16 @@ typedef struct _GtkIconTheme GtkIconTheme; * * Used to specify options for gtk_icon_theme_lookup_icon(). */ +/** + * GTK_ICON_LOOKUP_NONE: + * + * Perform a regular lookup. + * + * Since: 4.18 + */ typedef enum { + GTK_ICON_LOOKUP_NONE GDK_AVAILABLE_ENUMERATOR_IN_4_18 = 0, GTK_ICON_LOOKUP_FORCE_REGULAR = 1 << 0, GTK_ICON_LOOKUP_FORCE_SYMBOLIC = 1 << 1, GTK_ICON_LOOKUP_PRELOAD = 1 << 2,