correction to some save folder cases
This commit is contained in:
parent
9891126892
commit
9459a18032
|
@ -17,7 +17,7 @@ class SettingsActivity : SimpleActivity() {
|
||||||
setContentView(R.layout.activity_settings)
|
setContentView(R.layout.activity_settings)
|
||||||
|
|
||||||
setupDarkTheme()
|
setupDarkTheme()
|
||||||
setupUseDCIM()
|
setupSavePhotosFolder()
|
||||||
setupSound()
|
setupSound()
|
||||||
setupForceRatio()
|
setupForceRatio()
|
||||||
setupMaxPhotoResolution()
|
setupMaxPhotoResolution()
|
||||||
|
@ -48,7 +48,7 @@ class SettingsActivity : SimpleActivity() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupUseDCIM() {
|
private fun setupSavePhotosFolder() {
|
||||||
var currPath = mConfig.savePhotosFolder
|
var currPath = mConfig.savePhotosFolder
|
||||||
settings_save_photos.text = currPath.substring(currPath.lastIndexOf("/") + 1)
|
settings_save_photos.text = currPath.substring(currPath.lastIndexOf("/") + 1)
|
||||||
settings_save_photos_holder.setOnClickListener {
|
settings_save_photos_holder.setOnClickListener {
|
||||||
|
@ -57,9 +57,9 @@ class SettingsActivity : SimpleActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onSuccess(pickedPath: String) {
|
override fun onSuccess(pickedPath: String) {
|
||||||
currPath = pickedPath
|
currPath = pickedPath.trimEnd('/')
|
||||||
mConfig.savePhotosFolder = pickedPath
|
mConfig.savePhotosFolder = currPath
|
||||||
settings_save_photos.text = pickedPath.substring(pickedPath.lastIndexOf("/") + 1)
|
settings_save_photos.text = currPath.substring(currPath.lastIndexOf("/") + 1)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue