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

#import "VibrantTextField.h"

@implementation VibrantTextField

- (void)drawRect:(NSRect)dirtyRect {
    [super drawRect:dirtyRect];
}

- (BOOL)allowsVibrancy {
    return YES;
}

@end