2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-17 15:26:23 +00:00
This commit is contained in:
Gabriel Luong 2020-09-08 14:30:13 -04:00 committed by GitHub
parent a9c11d6f3b
commit e8b910302b
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ object FeatureFlags {
/** /**
* Enables showing the top frequently visited sites * Enables showing the top frequently visited sites
*/ */
val topFrecentSite = Config.channel.isNightlyOrDebug const val topFrecentSite = true
/** /**
* Enables wait til first contentful paint * Enables wait til first contentful paint

View File

@ -102,7 +102,7 @@ class Settings(private val appContext: Context) : PreferencesHolder {
var showTopFrecentSites by featureFlagPreference( var showTopFrecentSites by featureFlagPreference(
appContext.getPreferenceKey(R.string.pref_key_enable_top_frecent_sites), appContext.getPreferenceKey(R.string.pref_key_enable_top_frecent_sites),
default = false, default = true,
featureFlag = FeatureFlags.topFrecentSite featureFlag = FeatureFlags.topFrecentSite
) )