mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2025-04-03 13:53:34 +03:00
PropertiesActivity: do not ask if profile not modified
This commit is contained in:
parent
c3da2a4312
commit
b532cf87ed
1 changed files with 3 additions and 2 deletions
|
@ -16,6 +16,7 @@ import com.github.kr328.clash.design.R
|
|||
|
||||
class PropertiesActivity : BaseActivity<PropertiesDesign>() {
|
||||
private var canceled: Boolean = false
|
||||
private lateinit var original: Profile
|
||||
|
||||
override suspend fun main() {
|
||||
setResult(RESULT_CANCELED)
|
||||
|
@ -23,7 +24,7 @@ class PropertiesActivity : BaseActivity<PropertiesDesign>() {
|
|||
val uuid = intent.uuid ?: return finish()
|
||||
val design = PropertiesDesign(this)
|
||||
|
||||
val original = withProfile { queryByUUID(uuid) } ?: return finish()
|
||||
original = withProfile { queryByUUID(uuid) } ?: return finish()
|
||||
|
||||
design.profile = original
|
||||
|
||||
|
@ -72,7 +73,7 @@ class PropertiesActivity : BaseActivity<PropertiesDesign>() {
|
|||
design?.apply {
|
||||
launch {
|
||||
if (!progressing) {
|
||||
if (requestExitWithoutSaving())
|
||||
if (original == profile || requestExitWithoutSaving())
|
||||
finish()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue