summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/tree_url_node.c3
-rw-r--r--render/box.c3
-rw-r--r--render/box_construct.c3
3 files changed, 9 insertions, 0 deletions
diff --git a/desktop/tree_url_node.c b/desktop/tree_url_node.c
index 3bc9f90fc..86ab8b50a 100644
--- a/desktop/tree_url_node.c
+++ b/desktop/tree_url_node.c
@@ -90,6 +90,9 @@ struct icon_entry icon_table[] = {
#ifdef WITH_NS_SVG
{CONTENT_SVG, NULL},
#endif
+#ifdef WITH_WEBP
+ {CONTENT_WEBP, NULL},
+#endif
{CONTENT_UNKNOWN, NULL},
/* this serves as a sentinel */
diff --git a/render/box.c b/render/box.c
index 6be898057..635bcbb3b 100644
--- a/render/box.c
+++ b/render/box.c
@@ -1160,6 +1160,9 @@ bool box_duplicate_main_tree(struct box *box, struct content *c, int *count)
content_get_type(box->object) == CONTENT_JNG ||
content_get_type(box->object) == CONTENT_MNG ||
#endif
+#ifdef WITH_WEBP
+ content_get_type(box->object) == CONTENT_WEBP ||
+#endif
#if defined(WITH_SPRITE) || defined(WITH_NSSPRITE)
content_get_type(box->object) == CONTENT_SPRITE ||
#endif
diff --git a/render/box_construct.c b/render/box_construct.c
index e214edfa6..a241dde43 100644
--- a/render/box_construct.c
+++ b/render/box_construct.c
@@ -81,6 +81,9 @@ static const content_type image_types[] = {
#ifdef WITH_ARTWORKS
CONTENT_ARTWORKS,
#endif
+#ifdef WITH_WEBP
+ CONTENT_WEBP,
+#endif
CONTENT_UNKNOWN };
/* the strings are not important, since we just compare the pointers */