aboutsummaryrefslogtreecommitdiff
path: root/wayland.c
diff options
context:
space:
mode:
Diffstat (limited to 'wayland.c')
-rw-r--r--wayland.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/wayland.c b/wayland.c
index 1671e6f..d31ca20 100644
--- a/wayland.c
+++ b/wayland.c
@@ -128,6 +128,11 @@ struct xkb_state *context_get_xkb_state(struct wl_context *context) {
return context->keyboard->state;
}
+// Returns the XDG activation object for the context.
+struct xdg_activation_v1 *context_get_xdg_activation(struct wl_context *context) {
+ return context->activation;
+}
+
// Retrieves pasted text from a Wayland data offer.
bool context_paste(struct wl_context *context) {
if (!context->data_offer) {