Removed a static from a function implmentation
parent
cdeb1f8c7a
commit
497199c4ea
|
|
@ -270,7 +270,7 @@ void button(void *data, wl_pointer *pointer, uint32_t serial, uint32_t time,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void frame(void* data, wl_pointer* pointer) {
|
void frame(void* data, wl_pointer* pointer) {
|
||||||
Seat seat = *(Seat*)data;
|
Seat seat = *(Seat*)data;
|
||||||
Monitor* monitor = seat.pointer->focused_monitor;
|
Monitor* monitor = seat.pointer->focused_monitor;
|
||||||
if (!monitor)
|
if (!monitor)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue