mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Ignore focus when checking toolbar state
* Support copy shortcut when in QTextEdit to prevent inadvertently copying password when interacting with those elements.
This commit is contained in:
parent
fb5173cebd
commit
8ae718b747
3 changed files with 12 additions and 11 deletions
|
@ -30,6 +30,7 @@
|
|||
#include <QLineEdit>
|
||||
#include <QProcess>
|
||||
#include <QSplitter>
|
||||
#include <QTextEdit>
|
||||
|
||||
#include "autotype/AutoType.h"
|
||||
#include "core/Config.h"
|
||||
|
@ -638,6 +639,14 @@ 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
|
||||
auto textEdit = qobject_cast<QTextEdit*>(focusWidget());
|
||||
if (textEdit) {
|
||||
textEdit->copy();
|
||||
return;
|
||||
}
|
||||
|
||||
auto currentEntry = currentSelectedEntry();
|
||||
if (currentEntry) {
|
||||
setClipboardTextAndMinimize(currentEntry->resolveMultiplePlaceholders(currentEntry->password()));
|
||||
|
@ -1566,11 +1575,6 @@ bool DatabaseWidget::isGroupSelected() const
|
|||
return m_groupView->currentGroup();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::currentEntryHasFocus()
|
||||
{
|
||||
return m_entryView->numberOfSelectedEntries() > 0 && m_entryView->hasFocus();
|
||||
}
|
||||
|
||||
bool DatabaseWidget::currentEntryHasTitle()
|
||||
{
|
||||
auto currentEntry = currentSelectedEntry();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue