Move writable dir checking lower down.

(Well, it was already lower down, this really just removes the higher
up calls that were getting in the way.)

Fixes https://gitlab.com/kicad/code/kicad/issues/5937
This commit is contained in:
Jeff Young 2021-02-19 22:23:27 +00:00
parent 5994ce3711
commit 881cb3182b
2 changed files with 2 additions and 2 deletions

View File

@ -783,7 +783,7 @@ void SYMBOL_EDIT_FRAME::OnModify()
m_treePane->GetLibTree()->RefreshLibTree();
if( !GetTitle().StartsWith( "*" ) )
UpdateTitle();
updateTitle();
}

View File

@ -737,7 +737,7 @@ void FOOTPRINT_EDIT_FRAME::OnModify()
m_treePane->GetLibTree()->RefreshLibTree();
if( !GetTitle().StartsWith( "*" ) )
UpdateTitle();
updateTitle();
}