mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Move location of Reader View button
This commit is contained in:
@@ -17,6 +17,15 @@ enum ArticleExtractorButtonState {
|
||||
|
||||
class ArticleExtractorButton: UIButton {
|
||||
|
||||
init() {
|
||||
super.init(frame: .zero)
|
||||
setImage(AppAssets.articleExtractorOff, for: .normal)
|
||||
}
|
||||
|
||||
required init?(coder: NSCoder) {
|
||||
super.init(coder: coder)
|
||||
}
|
||||
|
||||
var buttonState: ArticleExtractorButtonState = .off {
|
||||
didSet {
|
||||
if buttonState != oldValue {
|
||||
|
||||
Reference in New Issue
Block a user