From c210b27819a482c5522e43e2ecbfe17169bdbe65 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Thu, 4 Feb 2021 10:24:09 +0100 Subject: [PATCH] use ctrl+g for copying doc text from result table --- src/qtgui/restable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qtgui/restable.cpp b/src/qtgui/restable.cpp index 32f977d9..f45f20cf 100644 --- a/src/qtgui/restable.cpp +++ b/src/qtgui/restable.cpp @@ -701,7 +701,7 @@ void ResTable::onNewShortcuts() SETSHORTCUT(this, tr("Result Table"), tr("Show Vertical Header"), "Ctrl+V", m_showvheadersc, toggleVHeader); SETSHORTCUT(this, tr("Result Table"), tr("Copy current document text"), - "Ctrl+Shift+[", m_copycurtextsc, copyCurrentRowText); + "Ctrl+G", m_copycurtextsc, copyCurrentRowText); std::vector scps={ m_opensc, m_openquitsc, m_previewsc, m_showsnipssc, m_showheadersc, m_showvheadersc, m_copycurtextsc};