Don't preselect any options in library remove manga/downloads dialog (closes #6333)

Since apparently people don't read and either option is considered destructive to different people.
This commit is contained in:
arkon 2021-12-11 13:05:13 -05:00
parent ed4dea8686
commit cd87c7e88e

View File

@ -32,7 +32,7 @@ class DeleteLibraryMangasDialog<T>(bundle: Bundle? = null) :
.toTypedArray() .toTypedArray()
val selected = items val selected = items
.mapIndexed { i, _ -> i == 0 } .map { false }
.toBooleanArray() .toBooleanArray()
return MaterialAlertDialogBuilder(activity!!) return MaterialAlertDialogBuilder(activity!!)
.setTitle(R.string.action_remove) .setTitle(R.string.action_remove)