1
0
Fork 0

Fix #3122 - Hide the "Bookmark saved" Snackbar when user closes BrowserFragment

Previously the Snackbar was being inflated in the parent of this Fragment so
surviving it being closed.
Tying the Snackbar with the Fragment from which it is shown ensures it will be
effectively hidden whenever the user navigates from the Fragment.
master
Mugurell 2019-10-18 08:11:56 +03:00
parent f41783c4b3
commit faddf368e1
1 changed files with 2 additions and 2 deletions

View File

@ -295,8 +295,8 @@ class BrowserFragment : BaseBrowserFragment(), BackHandler {
)
requireComponents.analytics.metrics.track(Event.AddBookmark)
view?.let {
FenixSnackbar.make(it.rootView, Snackbar.LENGTH_LONG)
view?.let { view ->
FenixSnackbar.make(view, Snackbar.LENGTH_LONG)
.setAnchorView(browserToolbarView.view)
.setAction(getString(R.string.edit_bookmark_snackbar_action)) {
nav(