mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
20 lines
326 B
Swift
20 lines
326 B
Swift
//
|
|
// 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
|
|
}
|
|
}
|