2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 22:46:10 +00:00

Fix directory opening with portal and use them by default with KDE

This commit is contained in:
Ilya Fedin
2020-04-21 23:05:17 +04:00
committed by John Preston
parent c1f3fe1961
commit 7bc86cc9af
2 changed files with 4 additions and 4 deletions

View File

@@ -266,7 +266,7 @@ bool UseXDGDesktopPortal() {
const auto envVar = qEnvironmentVariableIsSet("TDESKTOP_USE_PORTAL");
const auto portalPresent = IsXDGDesktopPortalPresent();
return envVar && portalPresent;
return (DesktopEnvironment::IsKDE() || envVar) && portalPresent;
}();
return UsePortal;