Search + lastXMin Filter + dynamic text size

This commit is contained in:
relikd
2020-05-13 01:37:50 +02:00
parent 9485d7e9b5
commit 8424c161b9
25 changed files with 865 additions and 211 deletions

View File

@@ -8,7 +8,7 @@ class TBCMain: UITabBarController {
NotifyVPNStateChanged.observe(call: #selector(vpnStateChanged(_:)), on: self)
changedState(currentVPNState)
if !UserDefaults.standard.bool(forKey: "didShowTutorialAppWelcome") {
if !Pref.DidShowTutorial.Welcome {
self.perform(#selector(showWelcomeMessage), with: nil, afterDelay: 0.5)
}
}
@@ -37,7 +37,7 @@ class TBCMain: UITabBarController {
)
))
x.present {
UserDefaults.standard.set(true, forKey: "didShowTutorialAppWelcome")
Pref.DidShowTutorial.Welcome = true
}
}