aboutsummaryrefslogtreecommitdiff
path: root/VKPC/VibrantImageView.m
blob: 8b6381fa005d9d6a740e67459a489deed6e4e415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  VibrantImageView.m
//  VKPC
//
//  Created by Eugene on 10/28/14.
//  Copyright (c) 2014 Eugene Z. All rights reserved.
//

#import "VibrantImageView.h"

@implementation VibrantImageView

- (void)drawRect:(NSRect)dirtyRect {
    [super drawRect:dirtyRect];
    
    // Drawing code here.
}

- (BOOL)allowsVibrancy {
    return YES;
}

@end