VocalEasel/Sources/VLToolbarButton.mm
Matthias Neeracher 61fffbe00c Revamp toolbars
2011-08-29 02:01:58 +02:00

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