selecting the entire text by pressing "a" in the context help.

В контекстой помощи весь текст можно выделить нажав "a".
This commit is contained in:
lsv 2026-05-26 14:17:04 +05:00
parent 30c8cefe21
commit 2bcd61f10c

View file

@ -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) {