Add Ctrl+A (select all) to scintilla tricks.
Fixes https://gitlab.com/kicad/code/kicad/issues/5538
This commit is contained in:
parent
ad1ef9f4c9
commit
53389442b8
|
@ -140,6 +140,10 @@ void SCINTILLA_TRICKS::onCharHook( wxKeyEvent& aEvent )
|
|||
{
|
||||
m_te->Redo();
|
||||
}
|
||||
else if( aEvent.GetModifiers() == wxMOD_CONTROL && aEvent.GetKeyCode() == 'A' )
|
||||
{
|
||||
m_te->SelectAll();
|
||||
}
|
||||
else if( aEvent.GetModifiers() == wxMOD_CONTROL && aEvent.GetKeyCode() == 'X' )
|
||||
{
|
||||
m_te->Cut();
|
||||
|
|
Loading…
Reference in New Issue