Mac version references incorrect shortcut in FK navigation (ammend) #1539

According the documentation, the default value is PortableText which is
only for writing configuration. NativeText has to be used for display to
user.

This amends 87310a62e6
This commit is contained in:
mgr
2018-09-25 22:20:58 +02:00
parent 87310a62e6
commit 97f9a18310

View File

@@ -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();
}