mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Improve entry preview panel
* Fix #7811 - Notes height no longer truncated * Fix #7949 - Improve copying attribute value to clipboard in entry preview * Fix #7898 - Prevent copying url when copy password selected after clicking url in preview pane * Fix #7982 - Double clicking hidden attributes in preview pane copies the value instead of ●●●●●●
This commit is contained in:
parent
989348bbfb
commit
8190b20efe
4 changed files with 35 additions and 36 deletions
|
@ -642,19 +642,19 @@ void DatabaseWidget::copyPassword()
|
|||
bool clearClipboard = config()->get(Config::Security_ClearClipboard).toBool();
|
||||
|
||||
auto plainTextEdit = qobject_cast<QPlainTextEdit*>(focusWidget());
|
||||
if (plainTextEdit) {
|
||||
if (plainTextEdit && plainTextEdit->textCursor().hasSelection()) {
|
||||
clipboard()->setText(plainTextEdit->textCursor().selectedText(), clearClipboard);
|
||||
return;
|
||||
}
|
||||
|
||||
auto label = qobject_cast<QLabel*>(focusWidget());
|
||||
if (label) {
|
||||
if (label && label->hasSelectedText()) {
|
||||
clipboard()->setText(label->selectedText(), clearClipboard);
|
||||
return;
|
||||
}
|
||||
|
||||
auto textEdit = qobject_cast<QTextEdit*>(focusWidget());
|
||||
if (textEdit) {
|
||||
if (textEdit && textEdit->textCursor().hasSelection()) {
|
||||
clipboard()->setText(textEdit->textCursor().selectedText(), clearClipboard);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue