diff --git a/src/sqlitetablemodel.cpp b/src/sqlitetablemodel.cpp index bcd2f1d1..2ffa6495 100644 --- a/src/sqlitetablemodel.cpp +++ b/src/sqlitetablemodel.cpp @@ -302,7 +302,7 @@ QVariant SqliteTableModel::data(const QModelIndex &index, int role) const sqlb::ForeignKeyClause fk = getForeignKeyClause(index.column()-1); if(fk.isSet()) return tr("References %1(%2)\nHold %3Shift and click to jump there").arg(fk.table()).arg(fk.columns().join(",")) - .arg(QKeySequence(Qt::CTRL).toString()); + .arg(QKeySequence(Qt::CTRL).toString(QKeySequence::NativeText)); else return QString(); }