mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
22 lines
433 B
Plaintext
22 lines
433 B
Plaintext
//
|
|
// VLToolbarButton.mm
|
|
// VocalEasel
|
|
//
|
|
// Created by Matthias Neeracher on 8/23/11.
|
|
// Copyright 2011 Matthias Neeracher. All rights reserved.
|
|
//
|
|
|
|
#import "VLToolbarButton.h"
|
|
|
|
@implementation VLToolbarButton
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
NSButtonCell * cell = [self cell];
|
|
[cell setHighlightsBy:NSPushInCellMask];
|
|
[cell setShowsStateBy:NSContentsCellMask];
|
|
[cell setBackgroundStyle:NSBackgroundStyleRaised];
|
|
}
|
|
|
|
@end
|