From 606b655d8d811f880d610dead7d6943a33199deb Mon Sep 17 00:00:00 2001 From: Roman Hoellen Date: Mon, 30 Apr 2018 09:18:49 +0200 Subject: [PATCH] Set supported backend to X11 --- src/tilda.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tilda.c b/src/tilda.c index 8aa69828..92ce46c4 100644 --- a/src/tilda.c +++ b/src/tilda.c @@ -686,6 +686,9 @@ int main (int argc, char *argv[]) g_log_set_default_handler (tilda_log_handler, NULL); #endif + /* Set supported backend to X11 */ + gdk_set_allowed_backends ("x11"); + tilda_window tw; /* NULL set the tw pointers so we can get a clean exit on initialization failure */ memset(&tw, 0, sizeof(tilda_window));