aboutsummaryrefslogtreecommitdiff
path: root/VKPC/PopoverImageView.m
diff options
context:
space:
mode:
Diffstat (limited to 'VKPC/PopoverImageView.m')
-rw-r--r--VKPC/PopoverImageView.m23
1 files changed, 23 insertions, 0 deletions
diff --git a/VKPC/PopoverImageView.m b/VKPC/PopoverImageView.m
new file mode 100644
index 0000000..6ac07b3
--- /dev/null
+++ b/VKPC/PopoverImageView.m
@@ -0,0 +1,23 @@
+//
+// PopoverImageView.m
+// VKPC
+//
+// Created by Eugene on 10/29/14.
+// Copyright (c) 2014 Eugene Z. All rights reserved.
+//
+
+#import "PopoverImageView.h"
+
+@implementation PopoverImageView
+
+- (void)drawRect:(NSRect)dirtyRect {
+ [super drawRect:dirtyRect];
+
+ // Drawing code here.
+}
+
+- (BOOL)allowsVibrancy {
+ return NO;
+}
+
+@end