mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Use QClipboard::clear() instead of setting blank text
* Fixes #9121 and #4498 and #4105
This commit is contained in:
parent
58c4d1de1e
commit
2ee9d501ff
1 changed files with 2 additions and 1 deletions
|
@ -99,7 +99,8 @@ void Clipboard::clearCopiedText()
|
|||
|
||||
if (m_lastCopied == clipboard->text(QClipboard::Clipboard)
|
||||
|| m_lastCopied == clipboard->text(QClipboard::Selection)) {
|
||||
setText("", false);
|
||||
clipboard->clear(QClipboard::Clipboard);
|
||||
clipboard->clear(QClipboard::Selection);
|
||||
}
|
||||
|
||||
m_lastCopied.clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue