mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-05 21:20:45 +00:00
[fenix] For https://github.com/mozilla-mobile/fenix/issues/25810 - Unified search should give hint to user that there are more menu items available by scrolling (https://github.com/mozilla-mobile/fenix/pull/27895)
* For https://github.com/mozilla-mobile/fenix/issues/25810 - Unified search should give hint to user that there are more menu items available by scrolling * For https://github.com/mozilla-mobile/fenix/issues/25810: Updated AC version Co-authored-by: t-p-white <t-p-white>
This commit is contained in:
parent
516eb62a76
commit
b2bfae66da
@ -361,7 +361,7 @@ class HomeFragment : Fragment() {
|
||||
}
|
||||
|
||||
UnifiedSearch.searchMenuTapped.record(NoExtras())
|
||||
searchSelectorMenu.menuController.show(anchor = it, orientation = orientation, forceOrientation = true)
|
||||
searchSelectorMenu.menuController.show(anchor = it, orientation = orientation)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -63,7 +63,7 @@ class SearchSelectorToolbarAction(
|
||||
}
|
||||
|
||||
UnifiedSearch.searchMenuTapped.record(NoExtras())
|
||||
menu.menuController.show(anchor = it, orientation = orientation, forceOrientation = true)
|
||||
menu.menuController.show(anchor = it, orientation = orientation)
|
||||
}
|
||||
|
||||
val topPadding = resources.getDimensionPixelSize(R.dimen.search_engine_engine_icon_top_margin)
|
||||
|
@ -87,7 +87,7 @@ class SearchSelectorToolbarActionTest {
|
||||
|
||||
assertNotNull(UnifiedSearch.searchMenuTapped.testGetValue())
|
||||
verify {
|
||||
menu.menuController.show(view, Orientation.DOWN, true)
|
||||
menu.menuController.show(view, Orientation.DOWN)
|
||||
}
|
||||
|
||||
every { settings.shouldUseBottomToolbar } returns true
|
||||
@ -95,7 +95,7 @@ class SearchSelectorToolbarActionTest {
|
||||
|
||||
assertNotNull(UnifiedSearch.searchMenuTapped.testGetValue())
|
||||
verify {
|
||||
menu.menuController.show(view, Orientation.UP, true)
|
||||
menu.menuController.show(view, Orientation.UP)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -3,5 +3,5 @@
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
object AndroidComponents {
|
||||
const val VERSION = "110.0.20230108143241"
|
||||
const val VERSION = "110.0.20230109143319"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user