kathenas / rpms / mutter

Forked from rpms/mutter 5 years ago
Clone

Blame SOURCES/0001-main-be-more-aggressive-in-assuming-X11-backend.patch

88c283
From 18d4fbb1fb641e2b507b3adcd13d231145a01cd6 Mon Sep 17 00:00:00 2001
776610
From: Ray Strode <rstrode@redhat.com>
776610
Date: Tue, 13 Feb 2018 09:44:50 -0500
776610
Subject: [PATCH] main: be more aggressive in assuming X11 backend
776610
776610
If the session is started by vncserver right now, the
776610
XDG_SESSION_TYPE won't be X11.  Ideally that would be
776610
fixed, but for backward compatibility we should default
776610
to X11 if the session type isn't set to wayland explicitly.
776610
---
776610
 src/core/main.c | 8 +++-----
776610
 1 file changed, 3 insertions(+), 5 deletions(-)
776610
776610
diff --git a/src/core/main.c b/src/core/main.c
88c283
index 629f8e94e..1e1e13367 100644
776610
--- a/src/core/main.c
776610
+++ b/src/core/main.c
88c283
@@ -333,7 +333,6 @@ find_session_type (void)
776610
   char *session_id;
776610
   char *session_type;
776610
   const char *session_type_env;
776610
-  gboolean is_tty = FALSE;
776610
   int ret, i;
776610
 
776610
   ret = sd_pid_get_session (0, &session_id);
88c283
@@ -346,8 +345,7 @@ find_session_type (void)
776610
         {
776610
           if (session_type_is_supported (session_type))
776610
             goto out;
776610
-          else
776610
-            is_tty = g_strcmp0 (session_type, "tty") == 0;
776610
+
776610
           free (session_type);
776610
         }
776610
     }
88c283
@@ -379,8 +377,8 @@ find_session_type (void)
776610
       goto out;
776610
     }
776610
 
776610
-  /* Legacy support for starting through xinit */
776610
-  if (is_tty && (g_getenv ("MUTTER_DISPLAY") || g_getenv ("DISPLAY")))
776610
+  /* Legacy support for starting through xinit or vncserver */
776610
+  if (g_getenv ("MUTTER_DISPLAY") || g_getenv ("DISPLAY"))
776610
     {
776610
       session_type = strdup ("x11");
776610
       goto out;
776610
-- 
88c283
2.21.0
776610