add long click to view manga in Migration Source Search (#5241)

apparently was added to Sy in 8686fecb1f
added it for main as well

Co-Authored-By: jobobby04 <jobobby04@users.noreply.github.com>

fixes https://github.com/tachiyomiorg/tachiyomi/issues/5027
This commit is contained in:
curche 2021-06-02 03:28:10 +05:30 committed by GitHub
parent 88d9ffe92e
commit b41ac355a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,11 @@ class SourceSearchController(
dialog.showDialog(router)
return true
}
override fun onItemLongClick(position: Int) {
view?.let { super.onItemClick(it, position) }
}
private companion object {
const val MANGA_KEY = "oldManga"
}