diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pugl_clipboard_demo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pugl_clipboard_demo.c b/examples/pugl_clipboard_demo.c index efeb1eb..f43d729 100644 --- a/examples/pugl_clipboard_demo.c +++ b/examples/pugl_clipboard_demo.c @@ -89,7 +89,7 @@ onDataOffer(PuglView* view, const PuglDataOfferEvent* event) for (uint32_t t = 0; t < numTypes; ++t) { const char* type = puglGetClipboardType(view, t); if (!strncmp(type, "text/", 5)) { - puglAcceptOffer(view, event, t); + puglAcceptOffer(view, event, t, puglGetFrame(view)); return; } } |