Blob Blame History Raw
diff -up easystroke-0.6.0/main.cc.signal-handler-fix easystroke-0.6.0/main.cc
--- easystroke-0.6.0/main.cc.signal-handler-fix	2019-10-18 14:00:25.146796452 -0400
+++ easystroke-0.6.0/main.cc	2019-10-18 14:01:50.034019519 -0400
@@ -161,7 +161,12 @@ void quit() {
 		xstate->bail_out();
 	dead = true;
 	win->hide();
-	xstate->queue(sigc::ptr_fun(&Gtk::Main::quit));
+	Glib::RefPtr<Gio::Application> app = Gio::Application::get_default();
+	xstate->queue(sigc::mem_fun(*app.operator->(), &Gio::Application::quit));
+}
+
+void sig_int(int) {
+	quit();
 }
 
 class App : public Gtk::Application, Base {
@@ -371,6 +376,10 @@ void App::on_activate() {
 
 	create_config_dir();
 	unsetenv("DESKTOP_AUTOSTART_ID");
+
+	signal(SIGINT, &sig_int);
+	signal(SIGCHLD, SIG_IGN);
+
 	dpy = XOpenDisplay(NULL);
 	if (!dpy) {
 		printf(_("Couldn't open display.\n"));