summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/render/html.c b/render/html.c
index 22fa80fbd..ed7e7ebaa 100644
--- a/render/html.c
+++ b/render/html.c
@@ -1242,6 +1242,21 @@ html_object_callback(hlcache_handle *object,
false);
break;
+ case CONTENT_MSG_DRAGSAVE:
+ /* Pass it on */
+ content_broadcast(&c->base, CONTENT_MSG_DRAGSAVE, event->data);
+ break;
+
+ case CONTENT_MSG_SAVELINK:
+ /* Pass it on */
+ content_broadcast(&c->base, CONTENT_MSG_SAVELINK, event->data);
+ break;
+
+ case CONTENT_MSG_POINTER:
+ /* Pass it on */
+ content_broadcast(&c->base, CONTENT_MSG_POINTER, event->data);
+ break;
+
default:
assert(0);
}