Commit 20c8b4ca authored by Dan Ballard's avatar Dan Ballard Committed by Pier Angelo Vendrame
Browse files

fixup! [android] Disable features and functionality

Bug 43918: disable composable toolbar for esr 140
parent 3d17d67c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1876,7 +1876,10 @@ class Settings(private val appContext: Context) : PreferencesHolder {

    var shouldUseComposableToolbar by lazyFeatureFlagPreference(
        key = appContext.getPreferenceKey(R.string.pref_key_enable_composable_toolbar),
        default = { FxNimbus.features.composableToolbar.value().enabled },
        // tb-43918
        // Setting to off for esr140 since we've done no work for it, but it appears moz has enabled
        // by default in 144 so we'll likely be switching this to true and porting to it for esr-next
        default = { false },
        featureFlag = true,
    )