Removed a static from a function implmentation

master
MadcowOG 2023-02-26 16:39:40 -08:00
parent cdeb1f8c7a
commit 497199c4ea
1 changed files with 1 additions and 1 deletions

View File

@ -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)