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:
Akinori MUSHA 2016-12-22 16:21:52 +09:00
parent 63a1b49745
commit d0a3c08840
5 changed files with 61 additions and 14 deletions

View file

@ -385,6 +385,11 @@ void DatabaseWidget::deleteEntries()
}
}
void DatabaseWidget::setFocus()
{
m_entryView->setFocus();
}
void DatabaseWidget::copyTitle()
{
Entry* currentEntry = m_entryView->currentEntry();