Skip to content

Commit 05e7312

Browse files
[Qwant] [TO BE DISCARDED] Temporary deactivation of features
1 parent d122951 commit 05e7312

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

firefox-ios/Client/Frontend/DefaultBrowserOnboarding/DefaultBrowserOnboardingViewModel.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ class DefaultBrowserOnboardingViewModel {
8484
UserDefaults.standard.set(true, forKey: PrefsKeys.KeyDidShowDefaultBrowserOnboarding)
8585
}
8686

87-
return shouldShow
87+
return shouldShow && false
8888
}
8989
}

firefox-ios/Client/Frontend/Settings/Main/Support/ShowIntroductionSetting.swift

+2
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ class ShowIntroductionSetting: Setting {
3030

3131
settingsDelegate?.pressedShowTour()
3232
}
33+
34+
override var hidden: Bool { return true }
3335
}

firefox-ios/Client/IntroScreenManager.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ struct IntroScreenManager {
99
var prefs: Prefs
1010

1111
var shouldShowIntroScreen: Bool {
12-
prefs.intForKey(PrefsKeys.IntroSeen) == nil
12+
prefs.intForKey(PrefsKeys.IntroSeen) == nil && false
1313
}
1414

1515
func didSeeIntroScreen() {

0 commit comments

Comments
 (0)