From 1752745fcfcce6ad0ad540e006a39640ef6fc432 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 30 Nov 2021 22:43:41 +0100 Subject: [PATCH] pgo: add stub for xcursor_for_csd_border() --- input.h | 2 +- pgo/pgo.c | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/input.h b/input.h index 5a2c7a67..da887ef2 100644 --- a/input.h +++ b/input.h @@ -27,4 +27,4 @@ extern const struct wl_pointer_listener pointer_listener; void input_repeat(struct seat *seat, uint32_t key); -const char * xcursor_for_csd_border(struct terminal *term, int x, int y); +const char *xcursor_for_csd_border(struct terminal *term, int x, int y); diff --git a/pgo/pgo.c b/pgo/pgo.c index 0be2bc62..aec1a31f 100644 --- a/pgo/pgo.c +++ b/pgo/pgo.c @@ -74,6 +74,12 @@ render_xcursor_set(struct seat *seat, struct terminal *term, const char *xcursor return true; } +const char * +xcursor_for_csd_border(struct terminal *term, int x, int y) +{ + return XCURSOR_LEFT_PTR; +} + struct wl_window * wayl_win_init(struct terminal *term, const char *token) {