mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Make selected text copyable instead of copying password
* Fixes 7209
This commit is contained in:
parent
a0a063b57f
commit
6c4a82bd51
1 changed files with 19 additions and 3 deletions
|
@ -24,6 +24,7 @@
|
|||
#include <QDesktopServices>
|
||||
#include <QHostInfo>
|
||||
#include <QKeyEvent>
|
||||
#include <QPlainTextEdit>
|
||||
#include <QProcess>
|
||||
#include <QSplitter>
|
||||
#include <QTextEdit>
|
||||
|
@ -591,11 +592,26 @@ void DatabaseWidget::copyUsername()
|
|||
|
||||
void DatabaseWidget::copyPassword()
|
||||
{
|
||||
// QTextEdit does not properly trap Ctrl+C copy shortcut
|
||||
// if a text edit has focus pass the copy operation to it
|
||||
// Some platforms do not properly trap Ctrl+C copy shortcut
|
||||
// if a text edit or label has focus pass the copy operation to it
|
||||
|
||||
bool clearClipboard = config()->get(Config::Security_ClearClipboard).toBool();
|
||||
|
||||
auto plainTextEdit = qobject_cast<QPlainTextEdit*>(focusWidget());
|
||||
if (plainTextEdit) {
|
||||
clipboard()->setText(plainTextEdit->textCursor().selectedText(), clearClipboard);
|
||||
return;
|
||||
}
|
||||
|
||||
auto label = qobject_cast<QLabel*>(focusWidget());
|
||||
if (label) {
|
||||
clipboard()->setText(label->selectedText(), clearClipboard);
|
||||
return;
|
||||
}
|
||||
|
||||
auto textEdit = qobject_cast<QTextEdit*>(focusWidget());
|
||||
if (textEdit) {
|
||||
textEdit->copy();
|
||||
clipboard()->setText(textEdit->textCursor().selectedText(), clearClipboard);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue