summaryrefslogtreecommitdiff
path: root/src/core/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/main.c')
-rw-r--r--src/core/main.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/core/main.c b/src/core/main.c
index e8464720f..492c74a9d 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -606,22 +606,6 @@ meta_init (void)
meta_fatal ("Can't specify both SM save file and SM client id\n");
meta_main_loop = g_main_loop_new (NULL, FALSE);
-
- /*
- * We need to make sure the first client connecting to the X server
- * (e.g. Xwayland started from meta_wayland_init() above) is a permanent one,
- * so prepare the GDK X11 connection now already. Without doing this, if
- * there are any functionality that relies on X11 after here before
- * meta_display_open(), the X server will terminate itself when such a client
- * disconnects before the permanent GDK client connects.
- */
- if (meta_should_autostart_x11_display ())
- {
- GError *error = NULL;
-
- if (!meta_x11_init_gdk_display (&error))
- g_error ("Failed to open X11 display: %s", error->message);
- }
}
/**