From 881cb3182b112002154cbc72b9951b3669762a4a Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 19 Feb 2021 22:23:27 +0000 Subject: [PATCH] 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 --- eeschema/symbol_editor/symbol_edit_frame.cpp | 2 +- pcbnew/footprint_edit_frame.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/symbol_editor/symbol_edit_frame.cpp b/eeschema/symbol_editor/symbol_edit_frame.cpp index 0e14ce07ac..34e0bf5da2 100644 --- a/eeschema/symbol_editor/symbol_edit_frame.cpp +++ b/eeschema/symbol_editor/symbol_edit_frame.cpp @@ -783,7 +783,7 @@ void SYMBOL_EDIT_FRAME::OnModify() m_treePane->GetLibTree()->RefreshLibTree(); if( !GetTitle().StartsWith( "*" ) ) - UpdateTitle(); + updateTitle(); } diff --git a/pcbnew/footprint_edit_frame.cpp b/pcbnew/footprint_edit_frame.cpp index 6ca1d924f4..bf1f7332c0 100644 --- a/pcbnew/footprint_edit_frame.cpp +++ b/pcbnew/footprint_edit_frame.cpp @@ -737,7 +737,7 @@ void FOOTPRINT_EDIT_FRAME::OnModify() m_treePane->GetLibTree()->RefreshLibTree(); if( !GetTitle().StartsWith( "*" ) ) - UpdateTitle(); + updateTitle(); }