mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user