pl_editor: fix missing view full rebuild after importing a .kicad_wks file.
This commit is contained in:
parent
8112a8ade1
commit
54b22b1851
|
@ -127,7 +127,7 @@ void PL_EDITOR_FRAME::Files_io( wxCommandEvent& event )
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
GetScreen()->SetModify();
|
GetScreen()->SetModify();
|
||||||
GetGalCanvas()->Refresh();
|
HardRedraw();
|
||||||
msg.Printf( _( "File \"%s\" inserted" ), GetChars( filename ) );
|
msg.Printf( _( "File \"%s\" inserted" ), GetChars( filename ) );
|
||||||
SetStatusText( msg );
|
SetStatusText( msg );
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
|
|
||||||
TOOL_ACTION PL_ACTIONS::move( "plEditor.InteractiveEdit.move",
|
TOOL_ACTION PL_ACTIONS::move( "plEditor.InteractiveEdit.move",
|
||||||
AS_GLOBAL,
|
AS_GLOBAL,
|
||||||
'M', LEGACY_HK_NAME( "Move Item" ),
|
'M', LEGACY_HK_NAME( "Move Item" ),
|
||||||
_( "Move" ), _( "Moves the selected item(s)" ),
|
_( "Move" ), _( "Moves the selected item(s)" ),
|
||||||
move_xpm, AF_ACTIVATE );
|
move_xpm, AF_ACTIVATE );
|
||||||
|
|
Loading…
Reference in New Issue