mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-06-30 06:12:11 -06:00
selecting the entire text by pressing "a" in the context help.
В контекстой помощи весь текст можно выделить нажав "a".
This commit is contained in:
parent
30c8cefe21
commit
2bcd61f10c
1 changed files with 1 additions and 0 deletions
|
|
@ -71,6 +71,7 @@ public:
|
|||
if (event.GetKeyCode() == WXK_UP) htmlWindow->ScrollLines(-1);
|
||||
if (event.GetKeyCode() == WXK_HOME) htmlWindow->ScrollPages(-1000);
|
||||
if (event.GetKeyCode() == WXK_END) htmlWindow->ScrollPages(1000);
|
||||
if (event.GetKeyCode() == 'A') htmlWindow->SelectAll();
|
||||
//std::cout << "key code " << event.GetKeyCode() << " " << std::endl;
|
||||
if (event.GetKeyCode() == 'C' && hist.size() > 0) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue