From 8c04cce28510dda1bd7e6fabaf4c79bbac0248d7 Mon Sep 17 00:00:00 2001 From: Matteo Sozzi Date: Sun, 21 Jul 2019 17:44:04 +0200 Subject: [PATCH] exiting main loop on close --- src/wayland-window.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/wayland-window.cpp b/src/wayland-window.cpp index ebee9cf..77527d3 100644 --- a/src/wayland-window.cpp +++ b/src/wayland-window.cpp @@ -62,6 +62,9 @@ namespace wf struct zwlr_layer_surface_v1 *surface) { zwlr_layer_surface_v1_destroy(surface); + + Gtk::Application *app = (Gtk::Application *) data; + app->quit(); } static struct zwlr_layer_surface_v1_listener layer_surface_listener = @@ -208,8 +211,9 @@ namespace wf std::exit(-1); } + Gtk::Application *data = this->get_application().get(); zwlr_layer_surface_v1_add_listener(layer_surface, - &layer_surface_listener, nullptr); + &layer_surface_listener, data); zwlr_layer_surface_v1_set_keyboard_interactivity(layer_surface, 0); zwlr_layer_surface_v1_set_size(layer_surface, width, height);