mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add shortcut to copy password with TOTP appended
This commit is contained in:
parent
d80be4c459
commit
4978184480
9 changed files with 35 additions and 6 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue