2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-05 21:20:45 +00:00

For #15007 - Puts swipe to delete behind a feature flag (#15009)

This commit is contained in:
Jeff Boek 2020-09-14 15:20:46 -07:00 committed by GitHub
parent 0a8b9e378c
commit c632b6b0a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -40,4 +40,9 @@ object FeatureFlags {
* Enables downloads with external download managers.
*/
const val externalDownloadManager = true
/**
* Enables swipe to delete in bookmarks
*/
val bookmarkSwipeToDelete = Config.channel.isNightlyOrDebug
}

View File

@ -13,6 +13,7 @@ import kotlinx.android.synthetic.main.component_bookmark.view.*
import mozilla.appservices.places.BookmarkRoot
import mozilla.components.concept.storage.BookmarkNode
import mozilla.components.support.base.feature.UserInteractionHandler
import org.mozilla.fenix.FeatureFlags
import org.mozilla.fenix.NavGraphDirections
import org.mozilla.fenix.R
import org.mozilla.fenix.library.LibraryPageView
@ -135,7 +136,9 @@ class BookmarkView(
interactor.onRequestSync()
}
BookmarkTouchHelper(interactor).attachToRecyclerView(view.bookmark_list)
if (FeatureFlags.bookmarkSwipeToDelete) {
BookmarkTouchHelper(interactor).attachToRecyclerView(view.bookmark_list)
}
}
fun update(state: BookmarkFragmentState) {