VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Unix/Main.cpp
diff options
context:
space:
mode:
authorJertzukka <Jertzukka@gmail.com>2023-12-11 10:11:07 +0200
committerGitHub <noreply@github.com>2023-12-11 09:11:07 +0100
commit801c3ab966ec9b1f40d09dd50dbd5db985d52478 (patch)
treeed4cbf2762fa7ee474f3e0e400cdd07bb65a31a2 /src/Main/Unix/Main.cpp
parent87a9508fddb1656206188318365783e1a2d3e635 (diff)
downloadVeraCrypt-801c3ab966ec9b1f40d09dd50dbd5db985d52478.tar.gz
VeraCrypt-801c3ab966ec9b1f40d09dd50dbd5db985d52478.zip
Linux: Allows GUI to launch in a Wayland-only environment (#1264)
Currently we check whether the system has DISPLAY environment variable set, which is the case in a system that uses X11 natively or XWayland. This variable is not set in a system with only Wayland, so we need to also check whether WAYLAND_DISPLAY is set. Fixes: #184
Diffstat (limited to 'src/Main/Unix/Main.cpp')
-rw-r--r--src/Main/Unix/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main/Unix/Main.cpp b/src/Main/Unix/Main.cpp
index 39a2eaba..ffc71a8d 100644
--- a/src/Main/Unix/Main.cpp
+++ b/src/Main/Unix/Main.cpp
@@ -76,7 +76,7 @@ int main (int argc, char **argv)
#endif
#ifdef __WXGTK__
- if (!getenv ("DISPLAY"))
+ if (!getenv ("DISPLAY") && !getenv ("WAYLAND_DISPLAY"))
forceTextUI = true;
#endif