Implement ability to clone an entry when in search mode.

* Cloned entries have "- Clone" appended to their name
This commit is contained in:
Jonathan White 2017-01-25 20:02:32 -05:00
parent 6ccae6cc37
commit 16ed89c471
No known key found for this signature in database
GPG key ID: 440FC65F2E0C6E01
5 changed files with 9 additions and 5 deletions

View file

@ -312,8 +312,10 @@ void DatabaseWidget::cloneEntry()
return;
}
Entry* entry = currentEntry->clone(Entry::CloneNewUuid | Entry::CloneResetTimeInfo);
Entry* entry = currentEntry->clone(Entry::CloneNewUuid | Entry::CloneResetTimeInfo | Entry::CloneRenameTitle);
entry->setGroup(currentEntry->group());
if (isInSearchMode())
search(m_lastSearchText);
m_entryView->setFocus();
m_entryView->setCurrentEntry(entry);
}