Commit 563bff9d authored by Marco Mattila's avatar Marco Mattila

Keep current tool selection when saving in pcbnew.

parent 2d2c73ef
...@@ -44,8 +44,12 @@ void WinEDA_PcbFrame::Files_io( wxCommandEvent& event ) ...@@ -44,8 +44,12 @@ void WinEDA_PcbFrame::Files_io( wxCommandEvent& event )
int id = event.GetId(); int id = event.GetId();
wxString msg; wxString msg;
// If an edition is in progress, stop it // If an edition is in progress, stop it.
DrawPanel->UnManageCursor( 0, DrawPanel->GetDefaultCursor() ); // For something else than save, get rid of current tool.
if( id == ID_SAVE_BOARD )
DrawPanel->UnManageCursor( -1, DrawPanel->GetDefaultCursor() );
else
DrawPanel->UnManageCursor( 0, DrawPanel->GetDefaultCursor() );
switch( id ) switch( id )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment