mirror of
https://github.com/Aviortheking/Neo-Store.git
synced 2025-08-04 17:32:00 +00:00
Added Amoled theme
Upgrade Gradle 7.1-rc-1 > 7.2 Bumped Kotlin Version 1.5.20 > 1.5.31 Gradle FIles cleanup All dependencies upgraded
This commit is contained in:
@@ -474,9 +474,8 @@ class EditRepositoryFragment() : ScreenFragment() {
|
||||
.observeOn(AndroidSchedulers.mainThread())
|
||||
.subscribe { result, throwable ->
|
||||
checkDisposable = null
|
||||
throwable?.printStackTrace()
|
||||
val resultAddress =
|
||||
result?.let { if (it.isEmpty()) null else it } ?: address
|
||||
throwable.printStackTrace()
|
||||
val resultAddress = if (result.isEmpty()) address else result
|
||||
val allow = resultAddress == address || run {
|
||||
layout.address.setText(resultAddress)
|
||||
invalidateAddress(resultAddress)
|
||||
|
@@ -100,6 +100,7 @@ class SettingsFragment : ScreenFragment() {
|
||||
is Preferences.Theme.System -> getString(R.string.system)
|
||||
is Preferences.Theme.Light -> getString(R.string.light)
|
||||
is Preferences.Theme.Dark -> getString(R.string.dark)
|
||||
is Preferences.Theme.Amoled -> getString(R.string.amoled)
|
||||
}
|
||||
}
|
||||
addSwitch(
|
||||
|
Reference in New Issue
Block a user