From 0e541281465f9386af1a23b3a0d453efc1982d26 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Sat, 16 May 2020 22:53:08 +0100 Subject: [PATCH] Remove old code from KICAD_MANAGER_FRAME OnCloseWindow The size is saved inside EDA_BASE_FRAME, and is done before this function is called, so this code had no effect. --- kicad/kicad_manager_frame.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/kicad/kicad_manager_frame.cpp b/kicad/kicad_manager_frame.cpp index c73a871062..67132e3b77 100644 --- a/kicad/kicad_manager_frame.cpp +++ b/kicad/kicad_manager_frame.cpp @@ -310,23 +310,10 @@ void KICAD_MANAGER_FRAME::OnCloseWindow( wxCloseEvent& Event ) if( Kiway().PlayersClose( false ) ) { - int px, py; - // Save the currently opened file in the file history if( !GetProjectFileName().empty() ) UpdateFileHistory( GetProjectFileName() ); - if( !IsIconized() ) // save main frame position and size - { - GetPosition( &px, &py ); - m_FramePos.x = px; - m_FramePos.y = py; - - GetSize( &px, &py ); - m_FrameSize.x = px; - m_FrameSize.y = py; - } - Event.SetCanVeto( true ); m_leftWin->Show( false );