Closed
Bug 1910911
Opened 7 months ago
Closed 7 months ago
Single Tap for Search: Enable/disable focus on toolbar flag from Nimbus
Categories
(Fenix :: Experimentation and Telemetry, task, P3)
Tracking
(firefox131 fixed)
RESOLVED
FIXED
131 Branch
Tracking | Status | |
---|---|---|
firefox131 | --- | fixed |
People
(Reporter: tjorjani, Assigned: tjorjani)
References
(Blocks 1 open bug)
Details
(Whiteboard: [fxdroid][group2])
Attachments
(1 file)
Step 1: Add the feature flag to the manifest. For example:
one-click-search:
description: Enable/disable the one click search feature.
variables:
enabled:
description: If true, the one click search will be enabled.
type: Boolean
default: false
Step 2: Update HomeFragment.kt
to use the experiment flag to enable/disable focusing on the address bar. For example:
val enableOneClickSearch = FxNimbus.features.oneClickSearch.value().enabled
val focusOnAddressBar = if(enableOneClickSearch){
true
} else {
bundleArgs.getBoolean(FOCUS_ON_ADDRESS_BAR)
}
val searchFragmentShouldBeAdded = !isConfigChange && focusOnAddressBar
Assignee | ||
Updated•7 months ago
|
Severity: -- → N/A
Priority: -- → P3
Whiteboard: [fxdroid][group2]
Updated•7 months ago
|
Assignee | ||
Comment 1•7 months ago
|
||
Pushed by icedicedcoffee@proton.me:
https://hg.mozilla.org/integration/autoland/rev/21c69876553e
Enable/disable Focus on Address Bar flag from Nimbus. r=android-reviewers,twhite
Comment 3•7 months ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 months ago
status-firefox131:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 131 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•