Change Linux documents path to XDG_DATA_HOME

Fixes https://gitlab.com/kicad/code/kicad/-/issues/7543
This commit is contained in:
Jon Evans 2021-02-17 20:25:39 -05:00
parent b2a4cbedda
commit 079203c345
1 changed files with 3 additions and 6 deletions

View File

@ -51,20 +51,17 @@ bool KIPLATFORM::ENV::IsNetworkPath( const wxString& aPath )
wxString KIPLATFORM::ENV::GetDocumentsPath()
{
wxString docsPath = g_get_user_special_dir( G_USER_DIRECTORY_DOCUMENTS );
wxString docsPath = g_get_user_data_dir();
if( docsPath.IsEmpty() )
{
wxFileName fallback;
fallback.AssignDir( g_get_home_dir() );
fallback.AppendDir( "Documents" );
fallback.AppendDir( ".local" );
fallback.AppendDir( "share" );
fallback.MakeAbsolute();
// No Documents dir and nothing from XDG? Give up and use $HOME
if( !fallback.DirExists() || !fallback.IsDirWritable() )
fallback.RemoveLastDir();
docsPath = fallback.GetFullPath();
}