Files
SideStore/AltStore/Components/ToastView.swift

20 lines
326 B
Swift
Raw Normal View History

//
// ToastView.swift
// AltStore
//
// Created by Riley Testut on 7/19/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
import Roxas
class ToastView: RSTToastView
{
override func layoutSubviews()
{
super.layoutSubviews()
self.layer.cornerRadius = self.bounds.midY
}
}