mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
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…
x
Reference in New Issue
Block a user