--- truecrypt-7.0a-source/Main/UserInterface.cpp~ 2010-09-05 16:32:10.000000000 +0200 +++ truecrypt-7.0a-source/Main/UserInterface.cpp 2011-05-15 11:31:09.503001893 +0200 @@ -818,7 +818,7 @@ // MIME handler for directory seems to be unavailable through wxWidgets wxString desktop = GetTraits()->GetDesktopEnvironment(); - if (desktop == L"GNOME" || desktop.empty()) + if (desktop == L"GNOME") { args.push_back ("--no-default-window"); args.push_back ("--no-desktop"); @@ -851,6 +851,34 @@ catch (exception &e) { ShowError (e); } } } + else if (desktop == L"XFCE") + { + args.push_back (string (path)); + try + { + Process::Execute ("thunar", args, 2000); + } + catch (TimeOut&) { } + catch (exception&) + { + try + { + Process::Execute ("xdg-open", args, 2000); + } + catch (TimeOut&) { } + catch (exception &e) { ShowError (e); } + } + } + else + { + args.push_back (string (path)); + try + { + Process::Execute ("xdg-open", args, 2000); + } + catch (TimeOut&) { } + catch (exception &e) { ShowError (e); } + } #endif }