From c17a266e299f374718c2c607c301dc6ef910ccdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 26 Jul 2021 12:16:42 +0200 Subject: Revert "GHOST/wayland: use Wayland only when 'BLENDER_WAYLAND' is set" This reverts commit c971c851d38ad52779fa5d75c86bbfb83abf660b. This change was part of the still-under-review patch D11489, which hasn't been accepted yet. --- intern/ghost/intern/GHOST_ISystem.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'intern') diff --git a/intern/ghost/intern/GHOST_ISystem.cpp b/intern/ghost/intern/GHOST_ISystem.cpp index d1f5e2ba11d..d9fecda22a4 100644 --- a/intern/ghost/intern/GHOST_ISystem.cpp +++ b/intern/ghost/intern/GHOST_ISystem.cpp @@ -57,13 +57,6 @@ GHOST_TSuccess GHOST_ISystem::createSystem() /* Special case, try Wayland, fall back to X11. */ try { m_system = new GHOST_SystemWayland(); - if (!std::getenv("BLENDER_WAYLAND")) { - printf( - "Connected to a Wayland compositor but Wayland is disabled at runtime.\n" - "Set environment variable 'BLENDER_WAYLAND' " - "(e.g. BLENDER_WAYLAND= blender) to use Wayland.\n"); - throw std::runtime_error(std::string()); - } } catch (const std::runtime_error &) { /* fallback to X11. */ -- cgit v1.2.3