Skip to content

Commit

Permalink
Traktor: Fixed Ctrl+A shortcut in RichEdit control.
Browse files Browse the repository at this point in the history
  • Loading branch information
apistol78 committed Mar 6, 2024
1 parent 828078d commit 304145f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/Ui/RichEdit/RichEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1473,6 +1473,10 @@ void RichEdit::eventKey(KeyEvent* event)
paste();
else if (ctrl && uch == L'X' && m_clipboard)
cut();
else if (ctrl && uch == L'A')
selectAll();
else if (ctrl && uch == L'D')
unselect();
else if (ch != 8 && ch != 127)
insertCharacter(ch, true);

Expand Down

0 comments on commit 304145f

Please sign in to comment.