From c0ef210d31fa2f9e1223f0312d715f81d21d2f0d Mon Sep 17 00:00:00 2001 From: vilas <158768360+anewdi@users.noreply.github.com> Date: Fri, 26 Apr 2024 13:05:28 +0200 Subject: [PATCH] GDK_BACKEND separator fix and try any backend (#618) GDK_BACKEND only support comma separator. Also added try for any gdk backend after x11. --- pages/Configuring/Environment-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Configuring/Environment-variables.md b/pages/Configuring/Environment-variables.md index 4a14d44..1430689 100644 --- a/pages/Configuring/Environment-variables.md +++ b/pages/Configuring/Environment-variables.md @@ -41,7 +41,7 @@ environment on traditional Linux distros. ## Toolkit Backend Variables -- `env = GDK_BACKEND,wayland;x11` - GTK: Use wayland if available, fall back to x11 if +- `env = GDK_BACKEND,wayland,x11,*` - GTK: Use wayland if available. If not: try x11, then any other GDK backend. not. - `env = QT_QPA_PLATFORM,wayland;xcb` - Qt: Use wayland if available, fall back to x11 if not.