mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Improve UI of the search edit (resurrecting 5c7c7f54
)
- The copy action (Control+C) when no text is selected copies the password of the current entry. This should be reasonable when Control+B copies the username. - Down at EOL moves the focus to the entry view. Enter and Tab should do that, but it would be handy for user to be able to get to the third entry by hitting Down three times.
This commit is contained in:
parent
63a1b49745
commit
d0a3c08840
5 changed files with 61 additions and 14 deletions
|
@ -385,6 +385,11 @@ void DatabaseWidget::deleteEntries()
|
|||
}
|
||||
}
|
||||
|
||||
void DatabaseWidget::setFocus()
|
||||
{
|
||||
m_entryView->setFocus();
|
||||
}
|
||||
|
||||
void DatabaseWidget::copyTitle()
|
||||
{
|
||||
Entry* currentEntry = m_entryView->currentEntry();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue