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