mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-10 13:13:34 +01:00
Linux: fix Nautilus not detected as file manager on some Gnome based destributions.
This commit is contained in:
parent
613ea66c95
commit
3a9db8d98c
@ -834,8 +834,10 @@ namespace VeraCrypt
|
|||||||
#else
|
#else
|
||||||
// MIME handler for directory seems to be unavailable through wxWidgets
|
// MIME handler for directory seems to be unavailable through wxWidgets
|
||||||
wxString desktop = GetTraits()->GetDesktopEnvironment();
|
wxString desktop = GetTraits()->GetDesktopEnvironment();
|
||||||
|
bool xdgOpenPresent = wxFileName::IsFileExecutable (wxT("/usr/bin/xdg-open"));
|
||||||
|
bool nautilusPresent = wxFileName::IsFileExecutable (wxT("/usr/bin/nautilus"));
|
||||||
|
|
||||||
if (desktop == L"GNOME")
|
if (desktop == L"GNOME" || (desktop.empty() && !xdgOpenPresent && nautilusPresent))
|
||||||
{
|
{
|
||||||
args.push_back ("--no-default-window");
|
args.push_back ("--no-default-window");
|
||||||
args.push_back ("--no-desktop");
|
args.push_back ("--no-desktop");
|
||||||
@ -868,7 +870,7 @@ namespace VeraCrypt
|
|||||||
catch (exception &e) { ShowError (e); }
|
catch (exception &e) { ShowError (e); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (wxFileName::IsFileExecutable (wxT("/usr/bin/xdg-open")))
|
else if (xdgOpenPresent)
|
||||||
{
|
{
|
||||||
// Fallback on the standard xdg-open command
|
// Fallback on the standard xdg-open command
|
||||||
// which is not always available by default
|
// which is not always available by default
|
||||||
|
Loading…
Reference in New Issue
Block a user