diff --git a/src/ExtendedTableWidget.cpp b/src/ExtendedTableWidget.cpp index a50067ff..d1c4f24b 100644 --- a/src/ExtendedTableWidget.cpp +++ b/src/ExtendedTableWidget.cpp @@ -375,7 +375,7 @@ QSet ExtendedTableWidget::selectedCols() void ExtendedTableWidget::cellClicked(const QModelIndex& index) { - // If Alt key is pressed try to jump to the row referenced by the foreign key of the clicked cell + // If Ctrl-Shift is pressed try to jump to the row referenced by the foreign key of the clicked cell if(qApp->keyboardModifiers().testFlag(Qt::ControlModifier) && qApp->keyboardModifiers().testFlag(Qt::ShiftModifier) && model()) { SqliteTableModel* m = qobject_cast(model());