session-ios/Signal/src/views/AvatarImageView.swift
Michael Kirk 647b2b37e9 WIP: WebRTC calling
* Ensure NotificationsManager has dependencies
    Otherwise it's easy to mess up the order of the required dependencies.
* move AccountManager into Environment, it's heavy to construct

// FREEBIE
2017-01-12 09:56:05 -05:00

15 lines
319 B
Swift

// Created by Michael Kirk on 12/11/16.
// Copyright © 2016 Open Whisper Systems. All rights reserved.
import UIKit
@IBDesignable
class AvatarImageView: UIImageView {
override func layoutSubviews() {
self.layer.masksToBounds = true
self.layer.cornerRadius = self.frame.size.width / 2
}
}