Added ITFoundation launch at login, but it doesn'ty work. Other small fixes for netwo...
[MenuTunes.git] / StatusItemHack.m
1 #import "StatusItemHack.h"
2 #import "MainController.h"
3
4 @implementation StatusItemHack
5
6 + (void)install
7 {
8     [StatusItemHack poseAsClass:[NSStatusBarButton class]];
9 }
10
11 - (void)mouseDown:(NSEvent *)event
12 {
13     [[MainController sharedController] menuClicked];
14     [super mouseDown:event];
15 }
16
17 @end