mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Fix ask lock when database can be saved
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
KeePassDX(3.4.3)
|
||||
* Remove "Select share info" setting for Magikeyboard #1304
|
||||
* Fix quick search and better loadGroup implementation #1302
|
||||
* Fix small bugs
|
||||
|
||||
KeePassDX(3.4.2)
|
||||
* Fix service parameter and workflow to remove notification when service is killed
|
||||
|
||||
@@ -435,9 +435,7 @@ abstract class DatabaseLockActivity : DatabaseModeActivity(),
|
||||
|
||||
protected fun lockAndExit() {
|
||||
// Ask confirmation if modification not saved
|
||||
if (mDatabase?.isReadOnly == false
|
||||
&& mDatabase?.dataModifiedSinceLastLoading == true
|
||||
&& !PreferencesUtil.isAutoSaveDatabaseEnabled(this)) {
|
||||
if (mDatabase?.dataModifiedSinceLastLoading == true) {
|
||||
AlertDialog.Builder(this)
|
||||
.setMessage(R.string.discard_changes)
|
||||
.setNegativeButton(android.R.string.cancel, null)
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
* Remove "Select share info" setting for Magikeyboard #1304
|
||||
* Fix quick search and better loadGroup implementation #1302
|
||||
* Fix quick search and better loadGroup implementation #1302
|
||||
* Fix small bugs
|
||||
@@ -1,2 +1,3 @@
|
||||
* Suppression de l'option "Selection de l'info partagée" pour le Magiclavier #1304
|
||||
* Correction de la recherche rapide et meilleure implementation de loadGroup #1302
|
||||
* Correction de la recherche rapide et meilleure implementation de loadGroup #1302
|
||||
* Correction de petits bugs
|
||||
Reference in New Issue
Block a user