mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-24 03:53:29 +01:00
Linux/MacOSX: Avoid OS leaking previously used directory if user choose not to save history.
This commit is contained in:
parent
b4ed8de5d5
commit
d6f03627dd
@ -1569,13 +1569,18 @@ namespace VeraCrypt
|
||||
|
||||
DirectoryPath GraphicUserInterface::SelectDirectory (wxWindow *parent, const wxString &message, bool existingOnly) const
|
||||
{
|
||||
/* Avoid OS leaking previously used directory when user choose not to save history */
|
||||
wxString defaultPath;
|
||||
if (!GetPreferences().SaveHistory)
|
||||
defaultPath = wxGetHomeDir ();
|
||||
|
||||
return DirectoryPath (::wxDirSelector (!message.empty() ? message :
|
||||
#ifdef __WXGTK__
|
||||
wxDirSelectorPromptStr,
|
||||
#else
|
||||
L"",
|
||||
#endif
|
||||
L"", wxDD_DEFAULT_STYLE | (existingOnly ? wxDD_DIR_MUST_EXIST : 0), wxDefaultPosition, parent).wc_str());
|
||||
defaultPath, wxDD_DEFAULT_STYLE | (existingOnly ? wxDD_DIR_MUST_EXIST : 0), wxDefaultPosition, parent).wc_str());
|
||||
}
|
||||
|
||||
FilePathList GraphicUserInterface::SelectFiles (wxWindow *parent, const wxString &caption, bool saveMode, bool allowMultiple, const list < pair <wstring, wstring> > &fileExtensions, const DirectoryPath &directory) const
|
||||
@ -1614,7 +1619,12 @@ namespace VeraCrypt
|
||||
}
|
||||
}
|
||||
|
||||
wxFileDialog dialog (parent, !caption.empty() ? caption : LangString ["OPEN_TITLE"], wstring (directory), wxString(), wildcards, style);
|
||||
/* Avoid OS leaking previously used directory when user choose not to save history */
|
||||
wxString defaultDir = wstring (directory);
|
||||
if (defaultDir.IsEmpty () && !GetPreferences().SaveHistory)
|
||||
defaultDir = wxGetHomeDir ();
|
||||
|
||||
wxFileDialog dialog (parent, !caption.empty() ? caption : LangString ["OPEN_TITLE"], defaultDir, wxString(), wildcards, style);
|
||||
|
||||
if (dialog.ShowModal() == wxID_OK)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user