change for macOSX compatibility
This commit is contained in:
parent
b24bbab0af
commit
a56c02e94b
|
@ -428,12 +428,14 @@ void WinEDA_SchematicFrame::OnUpdatePaste( wxUpdateUIEvent& event )
|
||||||
|
|
||||||
void WinEDA_SchematicFrame::OnUpdateSchematicUndo( wxUpdateUIEvent& event )
|
void WinEDA_SchematicFrame::OnUpdateSchematicUndo( wxUpdateUIEvent& event )
|
||||||
{
|
{
|
||||||
event.Enable( (GetScreen()->m_UndoList) ? true : false );
|
if ( GetScreen() )
|
||||||
|
event.Enable( (GetScreen()->m_UndoList) ? true : false );
|
||||||
}
|
}
|
||||||
|
|
||||||
void WinEDA_SchematicFrame::OnUpdateSchematicRedo( wxUpdateUIEvent& event )
|
void WinEDA_SchematicFrame::OnUpdateSchematicRedo( wxUpdateUIEvent& event )
|
||||||
{
|
{
|
||||||
event.Enable( (GetScreen()->m_RedoList) ? true : false );
|
if ( GetScreen() )
|
||||||
|
event.Enable( (GetScreen()->m_RedoList) ? true : false );
|
||||||
}
|
}
|
||||||
|
|
||||||
void WinEDA_SchematicFrame::OnUpdateBusOrientation( wxUpdateUIEvent& event )
|
void WinEDA_SchematicFrame::OnUpdateBusOrientation( wxUpdateUIEvent& event )
|
||||||
|
|
Loading…
Reference in New Issue