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

#import "VibrantButton.h"

@implementation VibrantButton

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

- (BOOL)allowsVibrancy {
    return YES;
}

@end