Replace obsolete key combination in comments

This commit is contained in:
Vladyslav Tronko
2017-01-16 18:30:55 +02:00
parent e7de02b18d
commit 0c60b01770

View File

@@ -375,7 +375,7 @@ QSet<int> 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<SqliteTableModel*>(model());