Rename MainFeed and MainTimeline folders to Sidebar and Timeline.

This commit is contained in:
Brent Simmons
2025-02-02 11:34:11 -08:00
parent b294fbcc58
commit 2c6c8a7240
26 changed files with 0 additions and 0 deletions

View File

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