From 497199c4eadd536000e76d5c692986f42842ba3c Mon Sep 17 00:00:00 2001 From: MadcowOG Date: Sun, 26 Feb 2023 16:39:40 -0800 Subject: [PATCH] Removed a static from a function implmentation --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index ed4c52f..cd88a89 100644 --- a/src/main.c +++ b/src/main.c @@ -270,7 +270,7 @@ void button(void *data, wl_pointer *pointer, uint32_t serial, uint32_t time, return; } -static void frame(void* data, wl_pointer* pointer) { +void frame(void* data, wl_pointer* pointer) { Seat seat = *(Seat*)data; Monitor* monitor = seat.pointer->focused_monitor; if (!monitor)