mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Add unlock dialog on Autotype and show default Autotype sequence (#89)
* Add unlockdialog on autotype. Fix #10 * Show default autotype sequence for existing entries * NOTE: New entries/groups do not show the default autotype sequence
This commit is contained in:
parent
0657d343bf
commit
6927158daa
13 changed files with 202 additions and 11 deletions
|
@ -37,6 +37,7 @@
|
|||
#include "gui/MessageBox.h"
|
||||
#include "gui/entry/EntryView.h"
|
||||
#include "gui/group/GroupView.h"
|
||||
#include "gui/UnlockDatabaseDialog.h"
|
||||
|
||||
DatabaseManagerStruct::DatabaseManagerStruct()
|
||||
: dbWidget(nullptr)
|
||||
|
@ -235,6 +236,7 @@ bool DatabaseTabWidget::closeDatabase(Database* db)
|
|||
int index = databaseIndex(db);
|
||||
Q_ASSERT(index != -1);
|
||||
|
||||
dbStruct.dbWidget->closeUnlockDialog();
|
||||
QString dbName = tabText(index);
|
||||
if (dbName.right(1) == "*") {
|
||||
dbName.chop(1);
|
||||
|
@ -813,5 +815,9 @@ void DatabaseTabWidget::performGlobalAutoType()
|
|||
}
|
||||
}
|
||||
|
||||
autoType()->performGlobalAutoType(unlockedDatabases);
|
||||
if (unlockedDatabases.size() > 0) {
|
||||
autoType()->performGlobalAutoType(unlockedDatabases);
|
||||
} else if (m_dbList.size() > 0){
|
||||
indexDatabaseManagerStruct(0).dbWidget->showUnlockDialog();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue