For #13235 - Add haptic feedback when long pressing forward button.

longTapDelay
Kainalu Hagiwara 4 years ago committed by Jeff Boek
parent f4296fb77e
commit 17bb010cc3

@ -251,10 +251,10 @@ class BrowserToolbarView(
}
private fun ToolbarMenu.Item.performHapticIfNeeded(view: View) {
(this as? ToolbarMenu.Item.Reload)?.also { reload ->
if (reload.bypassCache) {
view.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS)
}
if (this is ToolbarMenu.Item.Reload && this.bypassCache ||
this is ToolbarMenu.Item.Forward && this.viewHistory
) {
view.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS)
}
}
}

Loading…
Cancel
Save