handle xdg close event in idle-inhibit example

Fixes a crash when the idle-inhibit example application is closed by the
compositor, instead of Ctr+C on the spawning terminal, by actualy
handling the close request.
This commit is contained in:
Markus Ongyerth 2018-02-17 15:17:19 +01:00
parent a0bce86006
commit bab8c73d3c
1 changed files with 7 additions and 0 deletions

View File

@ -96,8 +96,15 @@ static void xdg_toplevel_handle_configure(void *data,
height = h;
}
static void xdg_toplevel_handle_close(void *data,
struct xdg_toplevel *xdg_toplevel) {
exit(EXIT_SUCCESS);
}
static const struct xdg_toplevel_listener xdg_toplevel_listener = {
.configure = xdg_toplevel_handle_configure,
.close = xdg_toplevel_handle_close,
};
// static const struct zxdg_toplevel_decoration_v1_listener decoration_listener = {