# HG changeset patch # User Matti Hamalainen # Date 1520426845 -7200 # Node ID 5406b8664f0055564ab0426f493b470f18513eda # Parent 4612cf95007b4c484a1b151e41177968f5f21459 Add keyboard shortcut ctrl+t for opening the transactions list. diff -r 4612cf95007b -r 5406b8664f00 src/main.cpp --- 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;