mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-12 15:59:58 -05:00
Added "Group full path" column
This commit is contained in:
parent
9e119230d4
commit
1391e347bb
@ -116,7 +116,7 @@ int EntryModel::columnCount(const QModelIndex& parent) const
|
||||
return 0;
|
||||
}
|
||||
|
||||
return 16;
|
||||
return 17;
|
||||
}
|
||||
|
||||
QVariant EntryModel::data(const QModelIndex& index, int role) const
|
||||
@ -434,6 +434,8 @@ QVariant EntryModel::headerData(int section, Qt::Orientation orientation, int ro
|
||||
return tr("Has TOTP");
|
||||
case Color:
|
||||
return tr("Background Color");
|
||||
case ParentGroupPath:
|
||||
return tr("Group full path");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -49,7 +49,8 @@ public:
|
||||
Totp = 12,
|
||||
Size = 13,
|
||||
PasswordStrength = 14,
|
||||
Color = 15
|
||||
Color = 15,
|
||||
ParentGroupPath = 16
|
||||
};
|
||||
|
||||
explicit EntryModel(QObject* parent = nullptr);
|
||||
|
Loading…
Reference in New Issue
Block a user