1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-02-03 10:47:35 +01:00
2021-07-19 20:16:56 +08:00

20 lines
342 B
Swift

//
// RoundedEdgesButton.swift
// MastodonUI
//
// Created by MainasuK Cirno on 2021-3-12.
//
import UIKit
open class RoundedEdgesButton: UIButton {
open override func layoutSubviews() {
super.layoutSubviews()
layer.masksToBounds = true
layer.cornerRadius = bounds.height * 0.5
}
}