android: Remove redundant option from slider dialog

You can already reset any setting by long pressing the settings item.
master
Charles Lombardo 2023-08-12 15:45:27 +07:00
parent 798a439eb1
commit 64ea5522d3
1 changed files with 0 additions and 4 deletions

@ -232,10 +232,6 @@ class SettingsAdapter(
.setView(sliderBinding.root) .setView(sliderBinding.root)
.setPositiveButton(android.R.string.ok, this) .setPositiveButton(android.R.string.ok, this)
.setNegativeButton(android.R.string.cancel, defaultCancelListener) .setNegativeButton(android.R.string.cancel, defaultCancelListener)
.setNeutralButton(R.string.slider_default) { dialog: DialogInterface, which: Int ->
sliderBinding.slider.value = item.defaultValue!!.toFloat()
onClick(dialog, which)
}
.show() .show()
} }