blob: 6ac07b3bf43a7eedfdb4343d5d1b56c2428c6fef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|