pl_editor: fix missing view full rebuild after importing a .kicad_wks file.

This commit is contained in:
jean-pierre charras 2019-06-13 15:51:06 +02:00
parent 8112a8ade1
commit 54b22b1851
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ void PL_EDITOR_FRAME::Files_io( wxCommandEvent& event )
else
{
GetScreen()->SetModify();
GetGalCanvas()->Refresh();
HardRedraw();
msg.Printf( _( "File \"%s\" inserted" ), GetChars( filename ) );
SetStatusText( msg );
}

View File

@ -39,7 +39,7 @@
TOOL_ACTION PL_ACTIONS::move( "plEditor.InteractiveEdit.move",
AS_GLOBAL,
AS_GLOBAL,
'M', LEGACY_HK_NAME( "Move Item" ),
_( "Move" ), _( "Moves the selected item(s)" ),
move_xpm, AF_ACTIVATE );