session-ios/Signal/src/ViewControllers/Utils/NeverClearView.swift

14 lines
300 B
Swift
Raw Normal View History

2018-03-10 01:14:21 +01:00
//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
@objc class NeverClearView: UIView {
override var backgroundColor: UIColor? {
didSet {
2018-03-22 14:13:35 +01:00
if backgroundColor?.cgColor.alpha == 0 {
backgroundColor = oldValue
}
}
}
}