diff --git a/3d-viewer/3d_viewer/3d_menubar.cpp b/3d-viewer/3d_viewer/3d_menubar.cpp index f6cf83ab7f..43241c3216 100644 --- a/3d-viewer/3d_viewer/3d_menubar.cpp +++ b/3d-viewer/3d_viewer/3d_menubar.cpp @@ -56,7 +56,8 @@ void EDA_3D_VIEWER::CreateMenuBar() export_xpm, SELECTION_CONDITIONS::ShowAlways ); fileMenu->AddSeparator(); - fileMenu->AddItem( wxID_CLOSE, _( "Close" ), "", exit_xpm, SELECTION_CONDITIONS::ShowAlways ); + fileMenu->AddItem( wxID_CLOSE, _( "Close\tCTRL+W" ), "", + exit_xpm, SELECTION_CONDITIONS::ShowAlways ); fileMenu->Resolve(); diff --git a/pcbnew/menubar_footprint_editor.cpp b/pcbnew/menubar_footprint_editor.cpp index 20a93f9acc..d60499e86c 100644 --- a/pcbnew/menubar_footprint_editor.cpp +++ b/pcbnew/menubar_footprint_editor.cpp @@ -105,7 +105,8 @@ void FOOTPRINT_EDIT_FRAME::ReCreateMenuBar() fileMenu->AddItem( ACTIONS::print, haveFootprintCondition ); fileMenu->AddSeparator(); - fileMenu->AddItem( wxID_CLOSE, _( "Close\tCTRL+W" ), "", exit_xpm, SELECTION_CONDITIONS::ShowAlways ); + fileMenu->AddItem( wxID_CLOSE, _( "Close\tCTRL+W" ), "", + exit_xpm, SELECTION_CONDITIONS::ShowAlways ); fileMenu->Resolve();