From 2bcd61f10cc40414f2a990db97c9412fd52812fa Mon Sep 17 00:00:00 2001 From: lsv Date: Tue, 26 May 2026 14:17:04 +0500 Subject: [PATCH] selecting the entire text by pressing "a" in the context help. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit В контекстой помощи весь текст можно выделить нажав "a". --- include/utils/popuphelp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/utils/popuphelp.h b/include/utils/popuphelp.h index f1cc216..a5c574b 100644 --- a/include/utils/popuphelp.h +++ b/include/utils/popuphelp.h @@ -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) {