Fixed renaming category

This commit is contained in:
Jay 2020-01-14 01:57:41 -08:00
parent 905dc0caa4
commit fc734a980f

View file

@ -41,7 +41,7 @@ class CategoryRenameDialog<T>(bundle: Bundle? = null) : DialogController(bundle)
.input(hintRes = R.string.name, prefill = currentName) { _, input -> .input(hintRes = R.string.name, prefill = currentName) { _, input ->
currentName = input.toString() currentName = input.toString()
} }
.positiveButton(android.R.string.ok) .positiveButton(android.R.string.ok) { onPositive() }
} }
/** /**