drop useless maplayersurfacenotify()
This commit is contained in:
parent
71f11e6cf6
commit
b4638fef29
10
dwl.c
10
dwl.c
@ -177,7 +177,6 @@ typedef struct {
|
|||||||
struct wlr_layer_surface_v1 *layer_surface;
|
struct wlr_layer_surface_v1 *layer_surface;
|
||||||
|
|
||||||
struct wl_listener destroy;
|
struct wl_listener destroy;
|
||||||
struct wl_listener map;
|
|
||||||
struct wl_listener unmap;
|
struct wl_listener unmap;
|
||||||
struct wl_listener surface_commit;
|
struct wl_listener surface_commit;
|
||||||
} LayerSurface;
|
} LayerSurface;
|
||||||
@ -298,7 +297,6 @@ static void keypressmod(struct wl_listener *listener, void *data);
|
|||||||
static int keyrepeat(void *data);
|
static int keyrepeat(void *data);
|
||||||
static void killclient(const Arg *arg);
|
static void killclient(const Arg *arg);
|
||||||
static void locksession(struct wl_listener *listener, void *data);
|
static void locksession(struct wl_listener *listener, void *data);
|
||||||
static void maplayersurfacenotify(struct wl_listener *listener, void *data);
|
|
||||||
static void mapnotify(struct wl_listener *listener, void *data);
|
static void mapnotify(struct wl_listener *listener, void *data);
|
||||||
static void maximizenotify(struct wl_listener *listener, void *data);
|
static void maximizenotify(struct wl_listener *listener, void *data);
|
||||||
static void monocle(Monitor *m);
|
static void monocle(Monitor *m);
|
||||||
@ -871,7 +869,6 @@ createlayersurface(struct wl_listener *listener, void *data)
|
|||||||
l = layer_surface->data = ecalloc(1, sizeof(*l));
|
l = layer_surface->data = ecalloc(1, sizeof(*l));
|
||||||
l->type = LayerShell;
|
l->type = LayerShell;
|
||||||
LISTEN(&surface->events.commit, &l->surface_commit, commitlayersurfacenotify);
|
LISTEN(&surface->events.commit, &l->surface_commit, commitlayersurfacenotify);
|
||||||
LISTEN(&surface->events.map, &l->map, maplayersurfacenotify);
|
|
||||||
LISTEN(&surface->events.unmap, &l->unmap, unmaplayersurfacenotify);
|
LISTEN(&surface->events.unmap, &l->unmap, unmaplayersurfacenotify);
|
||||||
LISTEN(&layer_surface->events.destroy, &l->destroy, destroylayersurfacenotify);
|
LISTEN(&layer_surface->events.destroy, &l->destroy, destroylayersurfacenotify);
|
||||||
|
|
||||||
@ -1170,7 +1167,6 @@ destroylayersurfacenotify(struct wl_listener *listener, void *data)
|
|||||||
|
|
||||||
wl_list_remove(&l->link);
|
wl_list_remove(&l->link);
|
||||||
wl_list_remove(&l->destroy.link);
|
wl_list_remove(&l->destroy.link);
|
||||||
wl_list_remove(&l->map.link);
|
|
||||||
wl_list_remove(&l->unmap.link);
|
wl_list_remove(&l->unmap.link);
|
||||||
wl_list_remove(&l->surface_commit.link);
|
wl_list_remove(&l->surface_commit.link);
|
||||||
wlr_scene_node_destroy(&l->scene->node);
|
wlr_scene_node_destroy(&l->scene->node);
|
||||||
@ -1625,12 +1621,6 @@ locksession(struct wl_listener *listener, void *data)
|
|||||||
wlr_session_lock_v1_send_locked(session_lock);
|
wlr_session_lock_v1_send_locked(session_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
maplayersurfacenotify(struct wl_listener *listener, void *data)
|
|
||||||
{
|
|
||||||
motionnotify(0, NULL, 0, 0, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
mapnotify(struct wl_listener *listener, void *data)
|
mapnotify(struct wl_listener *listener, void *data)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user