blob: 4092820f268728fff9a88dd45715dbbc742eb8ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// NonVibrantButton.m
// VKPC
//
// Created by Eugene on 11/18/14.
// Copyright (c) 2014 Eugene Z. All rights reserved.
//
#import "NonVibrantButton.h"
@implementation NonVibrantButton
- (void)drawRect:(NSRect)dirtyRect {
[super drawRect:dirtyRect];
// Drawing code here.
}
- (BOOL)allowsVibrancy {
return NO;
}
@end
|