mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Enable entry actions when editing an entry
* Fixes #2118 Enables select entry actions when editing an entry. This allows users to copy the password of the entry, for example. Note: unsaved changes to the entry will not be copied to the clipboard.
This commit is contained in:
@@ -809,13 +809,9 @@ void EditEntryWidget::toggleHideNotes(bool visible)
|
||||
m_mainUi->notesHint->setVisible(!visible);
|
||||
}
|
||||
|
||||
QString EditEntryWidget::entryTitle() const
|
||||
Entry* EditEntryWidget::currentEntry() const
|
||||
{
|
||||
if (m_entry) {
|
||||
return m_entry->title();
|
||||
} else {
|
||||
return QString();
|
||||
}
|
||||
return m_entry;
|
||||
}
|
||||
|
||||
void EditEntryWidget::loadEntry(Entry* entry,
|
||||
|
||||
Reference in New Issue
Block a user