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

@@ -20,7 +20,7 @@ class VCRecordings: UIViewController, UINavigationControllerDelegate {
updateUI(setRecording: false, animated: false)
currentRecording = DBWrp.recordingGetCurrent()
if !UserDefaults.standard.bool(forKey: "didShowTutorialRecordings") {
if !Pref.DidShowTutorial.Recordings {
self.perform(#selector(showTutorial), with: nil, afterDelay: 0.5)
}
}
@@ -136,7 +136,7 @@ class VCRecordings: UIViewController, UINavigationControllerDelegate {
))
x.buttonTitleDone = "Got it"
x.present {
UserDefaults.standard.set(true, forKey: "didShowTutorialRecordings")
Pref.DidShowTutorial.Recordings = true
}
}
}