updating commons + minor code style update
This commit is contained in:
parent
a57569cd86
commit
73aaf290f9
|
@ -58,7 +58,7 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:e56c724d04'
|
||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:16ae1d2c03'
|
||||
implementation 'com.github.Stericson:RootTools:df729dcb13'
|
||||
implementation 'com.github.Stericson:RootShell:1.6'
|
||||
implementation 'com.alexvasilkov:gesture-views:2.5.2'
|
||||
|
|
|
@ -107,7 +107,7 @@ class ReadTextActivity : SimpleActivity() {
|
|||
lastSavePromptTS = System.currentTimeMillis()
|
||||
ConfirmationAdvancedDialog(this, "", R.string.save_before_closing, R.string.save, R.string.discard) {
|
||||
if (it) {
|
||||
saveText(shouldExitAfterSaving = true)
|
||||
saveText(true)
|
||||
} else {
|
||||
super.onBackPressed()
|
||||
}
|
||||
|
@ -178,7 +178,7 @@ class ReadTextActivity : SimpleActivity() {
|
|||
originalText = currentText
|
||||
}
|
||||
|
||||
if (shouldExitAfterSaving) {
|
||||
if (shouldExitAfterSaving) {
|
||||
super.onBackPressed()
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue