mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Add TouchID support on macOS
This commit is contained in:
parent
5aeb30e845
commit
d9fcdd2920
17 changed files with 549 additions and 26 deletions
|
@ -55,6 +55,7 @@
|
|||
#include "gui/entry/EntryView.h"
|
||||
#include "gui/group/EditGroupWidget.h"
|
||||
#include "gui/group/GroupView.h"
|
||||
#include "touchid/TouchID.h"
|
||||
|
||||
#include "config-keepassx.h"
|
||||
|
||||
|
@ -820,6 +821,9 @@ void DatabaseWidget::updateMasterKey(bool accepted)
|
|||
if (accepted) {
|
||||
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
||||
bool result = m_db->setKey(m_changeMasterKeyWidget->newMasterKey(), true, true);
|
||||
#ifdef WITH_XC_TOUCHID
|
||||
TouchID::getInstance().reset(m_filePath);
|
||||
#endif
|
||||
QApplication::restoreOverrideCursor();
|
||||
|
||||
if (!result) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue