From 96f302c95826f1c3fad4ba387cdff696f31848aa Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Thu, 20 Dec 2012 19:05:18 +0100 Subject: [PATCH] Pcbnew: fix bug: missing call to SetFileFormatVersionAtLoad after loading a board, in legacy format. --- pcbnew/legacy_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcbnew/legacy_plugin.cpp b/pcbnew/legacy_plugin.cpp index a1fcac602c..25401a23e2 100644 --- a/pcbnew/legacy_plugin.cpp +++ b/pcbnew/legacy_plugin.cpp @@ -380,6 +380,7 @@ void LEGACY_PLUGIN::checkVersion() #endif m_loading_format_version = ver; + m_board->SetFileFormatVersionAtLoad( m_loading_format_version ); }