mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Introduce security option to enable copy on doubleclick (#6433)
* Fix #1575 - option is disabled by default
This commit is contained in:
parent
5c709f0da3
commit
7b7f52c8af
7 changed files with 30 additions and 2 deletions
|
@ -1195,10 +1195,18 @@ void DatabaseWidget::entryActivationSignalReceived(Entry* entry, EntryModel::Mod
|
|||
// Implement 'copy-on-doubleclick' functionality for certain columns
|
||||
switch (column) {
|
||||
case EntryModel::Username:
|
||||
setClipboardTextAndMinimize(entry->resolveMultiplePlaceholders(entry->username()));
|
||||
if (config()->get(Config::Security_EnableCopyOnDoubleClick).toBool()) {
|
||||
setClipboardTextAndMinimize(entry->resolveMultiplePlaceholders(entry->username()));
|
||||
} else {
|
||||
switchToEntryEdit(entry);
|
||||
}
|
||||
break;
|
||||
case EntryModel::Password:
|
||||
setClipboardTextAndMinimize(entry->resolveMultiplePlaceholders(entry->password()));
|
||||
if (config()->get(Config::Security_EnableCopyOnDoubleClick).toBool()) {
|
||||
setClipboardTextAndMinimize(entry->resolveMultiplePlaceholders(entry->password()));
|
||||
} else {
|
||||
switchToEntryEdit(entry);
|
||||
}
|
||||
break;
|
||||
case EntryModel::Url:
|
||||
if (!entry->url().isEmpty()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue