Files
NetNewsWire/iOS/MainTimeline/Cell/MainUnreadIndicatorView.swift
2023-09-24 11:10:50 -07:00

20 lines
374 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 MainUnreadIndicatorView: UIView {
override func layoutSubviews() {
super.layoutSubviews()
layer.cornerRadius = frame.size.width / 2.0
clipsToBounds = true
}
}