mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Subclass QSortFilterProxyModel to hide the group column in EntryView.
QTreeView::hideColumn() does not work well with keyboard search.
This commit is contained in:
parent
edb644baef
commit
9ad4cc8783
8 changed files with 138 additions and 11 deletions
|
@ -41,7 +41,7 @@ QModelIndex EntryModel::indexFromEntry(Entry* entry) const
|
|||
{
|
||||
int row = m_entries.indexOf(entry);
|
||||
Q_ASSERT(row != -1);
|
||||
return index(row, 0);
|
||||
return index(row, 1);
|
||||
}
|
||||
|
||||
void EntryModel::setGroup(Group* group)
|
||||
|
@ -83,6 +83,7 @@ void EntryModel::setEntryList(const QList<Entry*>& entries)
|
|||
}
|
||||
|
||||
Q_FOREACH (Database* db, databases) {
|
||||
Q_ASSERT(db);
|
||||
m_allGroups.append(db->rootGroup()->groupsRecursive(true));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue