aboutsummaryrefslogtreecommitdiff
path: root/VKPC/VibrantTextField.m
diff options
context:
space:
mode:
Diffstat (limited to 'VKPC/VibrantTextField.m')
-rw-r--r--VKPC/VibrantTextField.m21
1 files changed, 21 insertions, 0 deletions
diff --git a/VKPC/VibrantTextField.m b/VKPC/VibrantTextField.m
new file mode 100644
index 0000000..2fa3c2b
--- /dev/null
+++ b/VKPC/VibrantTextField.m
@@ -0,0 +1,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