changeset 222:5406b8664f00

Add keyboard shortcut ctrl+t for opening the transactions list.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 07 Mar 2018 14:47:25 +0200
parents 4612cf95007b
children 0ad684255485
files src/main.cpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/main.cpp	Wed Mar 07 14:36:19 2018 +0200
+++ b/src/main.cpp	Wed Mar 07 14:47:25 2018 +0200
@@ -459,6 +459,7 @@
     new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Return), this, SLOT(focusDebtEdit()));
 
     new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_P), this, SLOT(on_button_Print_clicked()));
+    new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_T), this, SLOT(on_button_ViewTransactions_clicked()));
 
     // Check for latest successful backup time
     qint64 threshold = 7;