Add shortcut to copy password with TOTP appended

This commit is contained in:
Jim Heden 2022-09-06 08:32:16 +01:00 committed by Jonathan White
parent 59e2c38635
commit 33d8b6db62
9 changed files with 35 additions and 6 deletions

View file

@ -648,6 +648,15 @@ void DatabaseWidget::copyPassword()
}
}
void DatabaseWidget::copyPasswordTotp()
{
auto currentEntry = currentSelectedEntry();
if (currentEntry) {
setClipboardTextAndMinimize(
currentEntry->resolveMultiplePlaceholders(currentEntry->password()).append(currentEntry->totp()));
}
}
void DatabaseWidget::copyURL()
{
auto currentEntry = currentSelectedEntry();