# HG changeset patch # User Matti Hamalainen # Date 1510222767 -7200 # Node ID 79da81b9e184b331686b527c2e2051c57cb20905 # Parent 76afbf6508c89cbbdbd91d592ee693f68debbc36 Move a line cosmetic. diff -r 76afbf6508c8 -r 79da81b9e184 src/main.cpp --- a/src/main.cpp Wed Nov 08 15:46:51 2017 +0200 +++ b/src/main.cpp Thu Nov 09 12:19:27 2017 +0200 @@ -439,10 +439,10 @@ new QShortcut(QKeySequence(QKeySequence::ZoomIn), this, SLOT(changeUIZoomIn())); new QShortcut(QKeySequence(QKeySequence::ZoomOut), this, SLOT(changeUIZoomOut())); + new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_0), this, SLOT(changeUIZoomReset())); new QShortcut(QKeySequence(Qt::CTRL + Qt::KeypadModifier + Qt::Key_Plus), this, SLOT(changeUIZoomIn())); new QShortcut(QKeySequence(Qt::CTRL + Qt::KeypadModifier + Qt::Key_Minus), this, SLOT(changeUIZoomOut())); new QShortcut(QKeySequence(Qt::CTRL + Qt::KeypadModifier + Qt::Key_0), this, SLOT(changeUIZoomReset())); - new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_0), this, SLOT(changeUIZoomReset())); new QShortcut(QKeySequence(Qt::Key_PageUp), this, SLOT(selectRowPrev())); new QShortcut(QKeySequence(Qt::Key_PageDown), this, SLOT(selectRowNext()));