diff options
author | Joshua Salzedo <thHunkn0WNd@gmail.com> | 2023-09-18 04:45:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 13:45:11 +0200 |
commit | f3c749f4a8dbb8953cf392604b077f1547400ae0 (patch) | |
tree | 04e714ad6cc7cd5388429a4219bd8035f84fc1ad /docs/TROUBLESHOOTING.md | |
parent | 4d61ffe0439dd1e145ec5ea992ea48978034bd78 (diff) | |
download | FlightCore-f3c749f4a8dbb8953cf392604b077f1547400ae0.tar.gz FlightCore-f3c749f4a8dbb8953cf392604b077f1547400ae0.zip |
docs: Mention workaround for blank window on Linux (#572)
Add entry to troubleshooting page addressing a blank window issue on Linux. See #571 for more info.
Diffstat (limited to 'docs/TROUBLESHOOTING.md')
-rw-r--r-- | docs/TROUBLESHOOTING.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/TROUBLESHOOTING.md b/docs/TROUBLESHOOTING.md index bf548cd6..2878dac1 100644 --- a/docs/TROUBLESHOOTING.md +++ b/docs/TROUBLESHOOTING.md @@ -18,3 +18,14 @@ https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section (make sure to select _Evergreen Bootstrapper_ -> _Download_). +## Linux + +### FlightCore launches, but the main window is blank +This may be caused by tauri-apps/tauri#5143 + +Try setting this environment variable when starting FlightCore: +`WEBKIT_DISABLE_COMPOSITING_MODE=1` + +```bash +WEBKIT_DISABLE_COMPOSITING_MODE=1 ./flight-core.AppImage +``` |