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:
parent
5994ce3711
commit
881cb3182b
|
@ -783,7 +783,7 @@ void SYMBOL_EDIT_FRAME::OnModify()
|
|||
m_treePane->GetLibTree()->RefreshLibTree();
|
||||
|
||||
if( !GetTitle().StartsWith( "*" ) )
|
||||
UpdateTitle();
|
||||
updateTitle();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -737,7 +737,7 @@ void FOOTPRINT_EDIT_FRAME::OnModify()
|
|||
m_treePane->GetLibTree()->RefreshLibTree();
|
||||
|
||||
if( !GetTitle().StartsWith( "*" ) )
|
||||
UpdateTitle();
|
||||
updateTitle();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue