Files
NetNewsWire/iOS/MasterTimeline/Cell/MasterUnreadIndicatorView.swift
2023-04-08 15:42:52 -07:00

20 lines
376 B
Swift

//
// MasterUnreadIndicatorView.swift
// NetNewsWire
//
// Created by Brent Simmons on 2/16/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
import UIKit
@MainActor class MasterUnreadIndicatorView: UIView {
override func layoutSubviews() {
super.layoutSubviews()
layer.cornerRadius = frame.size.width / 2.0
clipsToBounds = true
}
}