fix alhpabetical order
parent
5dc9460044
commit
4341deae8f
16
dwl.c
16
dwl.c
|
@ -263,8 +263,8 @@ static void togglefloating(const Arg *arg);
|
||||||
static void toggletag(const Arg *arg);
|
static void toggletag(const Arg *arg);
|
||||||
static void toggleview(const Arg *arg);
|
static void toggleview(const Arg *arg);
|
||||||
static void unmaplayersurface(LayerSurface *layersurface);
|
static void unmaplayersurface(LayerSurface *layersurface);
|
||||||
static void unmapnotify(struct wl_listener *listener, void *data);
|
|
||||||
static void unmaplayersurfacenotify(struct wl_listener *listener, void *data);
|
static void unmaplayersurfacenotify(struct wl_listener *listener, void *data);
|
||||||
|
static void unmapnotify(struct wl_listener *listener, void *data);
|
||||||
static void view(const Arg *arg);
|
static void view(const Arg *arg);
|
||||||
static Client *xytoclient(double x, double y);
|
static Client *xytoclient(double x, double y);
|
||||||
static struct wlr_surface *xytolayersurface(struct wl_list *layer_surfaces,
|
static struct wlr_surface *xytolayersurface(struct wl_list *layer_surfaces,
|
||||||
|
@ -2098,6 +2098,13 @@ unmaplayersurface(LayerSurface *layersurface)
|
||||||
motionnotify(0); // XXX why doesn't this work?
|
motionnotify(0); // XXX why doesn't this work?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
unmaplayersurfacenotify(struct wl_listener *listener, void *data)
|
||||||
|
{
|
||||||
|
LayerSurface *layersurface = wl_container_of(listener, layersurface, unmap);
|
||||||
|
unmaplayersurface(layersurface);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
unmapnotify(struct wl_listener *listener, void *data)
|
unmapnotify(struct wl_listener *listener, void *data)
|
||||||
{
|
{
|
||||||
|
@ -2113,13 +2120,6 @@ unmapnotify(struct wl_listener *listener, void *data)
|
||||||
wl_list_remove(&c->slink);
|
wl_list_remove(&c->slink);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
unmaplayersurfacenotify(struct wl_listener *listener, void *data)
|
|
||||||
{
|
|
||||||
LayerSurface *layersurface = wl_container_of(listener, layersurface, unmap);
|
|
||||||
unmaplayersurface(layersurface);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
view(const Arg *arg)
|
view(const Arg *arg)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue