mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Show correct group name when opening an entry from seach results.
This commit is contained in:
parent
23c787c4dd
commit
4daac65cc5
1 changed files with 2 additions and 7 deletions
|
@ -430,14 +430,9 @@ void DatabaseWidget::switchToEntryEdit(Entry* entry)
|
||||||
|
|
||||||
void DatabaseWidget::switchToEntryEdit(Entry* entry, bool create)
|
void DatabaseWidget::switchToEntryEdit(Entry* entry, bool create)
|
||||||
{
|
{
|
||||||
Group* group = m_groupView->currentGroup();
|
Q_ASSERT(entry->group());
|
||||||
if (!group) {
|
|
||||||
Q_ASSERT(m_entryView->inEntryListMode());
|
|
||||||
group = m_lastGroup;
|
|
||||||
}
|
|
||||||
Q_ASSERT(group);
|
|
||||||
|
|
||||||
m_editEntryWidget->loadEntry(entry, create, false, group->name(), m_db);
|
m_editEntryWidget->loadEntry(entry, create, false, entry->group()->name(), m_db);
|
||||||
setCurrentWidget(m_editEntryWidget);
|
setCurrentWidget(m_editEntryWidget);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue