mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
parent
6c663a19bf
commit
967a9f0195
2 changed files with 15 additions and 2 deletions
|
@ -214,10 +214,22 @@ void DatabaseWidget::createEntry()
|
|||
m_newEntry->setUuid(Uuid::random());
|
||||
m_newEntry->setUsername(m_db->metadata()->defaultUserName());
|
||||
m_newParent = m_groupView->currentGroup();
|
||||
if (m_newParent->iconNumber() != Group::DefaultIconNumber) {
|
||||
setIconFromParent();
|
||||
switchToEntryEdit(m_newEntry, true);
|
||||
}
|
||||
|
||||
void DatabaseWidget::setIconFromParent()
|
||||
{
|
||||
if (m_newParent->iconNumber() == Group::DefaultIconNumber && m_newParent->iconUuid().isNull()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_newParent->iconUuid().isNull()) {
|
||||
m_newEntry->setIcon(m_newParent->iconNumber());
|
||||
}
|
||||
switchToEntryEdit(m_newEntry, true);
|
||||
else {
|
||||
m_newEntry->setIcon(m_newParent->iconUuid());
|
||||
}
|
||||
}
|
||||
|
||||
void DatabaseWidget::cloneEntry()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue