Fixed ignored hot keys for save part/library commands in Symbol Editor

Previously wxUpdateUIEvent::SetText() stripped hotkey from menu entries.

Fixes: lp:1737819
* https://bugs.launchpad.net/kicad/+bug/1737819
This commit is contained in:
Maciej Suminski 2017-12-19 12:11:52 +01:00
parent 017fc4da8f
commit d4c8e1b5e9
1 changed files with 8 additions and 3 deletions

View File

@ -527,8 +527,10 @@ void LIB_EDIT_FRAME::OnUpdatePartModified( wxUpdateUIEvent& aEvent )
if( aEvent.GetId() == ID_LIBEDIT_SAVE_PART )
{
bool readOnly = libName.IsEmpty() || m_libMgr->IsLibraryReadOnly( libName );
wxString text = AddHotkeyName( readOnly ? _( "&Save Part [Read Only]" ) : _( "&Save Part" ),
g_Libedit_Hokeys_Descr, HK_SAVE_PART );
aEvent.SetText( readOnly ? _( "Save [Read Only]" ) : _( "Save" ) );
aEvent.SetText( text );
aEvent.Enable( !readOnly && !partName.IsEmpty()
&& m_libMgr->IsPartModified( partName, libName ) );
}
@ -576,9 +578,12 @@ void LIB_EDIT_FRAME::OnUpdateRedo( wxUpdateUIEvent& event )
void LIB_EDIT_FRAME::OnUpdateSaveLib( wxUpdateUIEvent& event )
{
wxString lib = getTargetLib();
bool readOnly = m_libMgr->IsLibraryReadOnly( lib );
bool readOnly = lib.IsEmpty() || m_libMgr->IsLibraryReadOnly( lib );
event.SetText( readOnly ? _( "Save library [Read Only]" ) : _( "Save library" ) );
wxString text = AddHotkeyName( readOnly ? _( "&Save Library [Read Only]" )
: _( "&Save Library" ) , g_Libedit_Hokeys_Descr, HK_SAVE_PART );
event.SetText( text );
event.Enable( !readOnly && m_libMgr->IsLibraryModified( lib ) );
}