Files
MacPass/MacPass/MPToolbarButton.h
michael starke 361b405825 Added MPToolbarButton to handle small control size in Toolbar
EntryEditView now gets displayed (without any functionality)
2013-02-26 20:57:25 +01:00

19 lines
402 B
Objective-C

//
// MPButton.h
// MacPass
//
// Created by michael starke on 26.02.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface MPToolbarButton : NSButton
/* This methods ensure, that the button get sized correctly if used as the view in a NSToolbarItem*/
- (void)setControlSize:(NSControlSize)controlSize;
- (NSControlSize)controlSize;
@end