Remove animation speed setting. Issue #1234
This commit is contained in:
parent
f138c2d9aa
commit
292e3789f4
|
@ -11,8 +11,6 @@ import Account
|
|||
|
||||
struct AppAssets {
|
||||
|
||||
static let layerSpeed: Float = 1.0
|
||||
|
||||
static var accountLocalPadImage: UIImage = {
|
||||
return UIImage(named: "accountLocalPad")!
|
||||
}()
|
||||
|
|
|
@ -73,11 +73,6 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner {
|
|||
super.viewWillAppear(animated)
|
||||
}
|
||||
|
||||
override func viewDidAppear(_ animated: Bool) {
|
||||
super.viewDidAppear(animated)
|
||||
tableView.layer.speed = AppAssets.layerSpeed
|
||||
}
|
||||
|
||||
// MARK: Notifications
|
||||
|
||||
@objc func unreadCountDidChange(_ note: Notification) {
|
||||
|
|
|
@ -76,11 +76,6 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
|||
}
|
||||
}
|
||||
|
||||
override func viewDidAppear(_ animated: Bool) {
|
||||
super.viewDidAppear(animated)
|
||||
tableView.layer.speed = AppAssets.layerSpeed
|
||||
}
|
||||
|
||||
// MARK: Actions
|
||||
|
||||
@IBAction func markAllAsRead(_ sender: Any) {
|
||||
|
|
|
@ -72,7 +72,6 @@ class SettingsViewController: UITableViewController {
|
|||
|
||||
override func viewDidAppear(_ animated: Bool) {
|
||||
super.viewDidAppear(animated)
|
||||
tableView.layer.speed = AppAssets.layerSpeed
|
||||
self.tableView.selectRow(at: nil, animated: true, scrollPosition: .none)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue