2019-04-15 22:03:05 +02:00
|
|
|
//
|
|
|
|
// MasterUnreadIndicatorView.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 2/16/16.
|
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
class MasterUnreadIndicatorView: UIView {
|
|
|
|
|
2019-11-03 02:15:48 +01:00
|
|
|
override func layoutSubviews() {
|
|
|
|
super.layoutSubviews()
|
|
|
|
layer.cornerRadius = frame.size.width / 2.0
|
|
|
|
clipsToBounds = true
|
2019-08-03 23:25:35 +02:00
|
|
|
}
|
2019-04-15 22:03:05 +02:00
|
|
|
|
|
|
|
}
|