w00t. I have successfully hacked NSStatusItem to look, if not act, like an NSMenuExtra.
[MenuTunes.git] / MTApplication.m
1 #import "MTApplication.h"
2 #import "HotKeyCenter.h"
3
4 @implementation MTApplication
5
6 - (void)sendEvent:(NSEvent *)event
7 {
8         [[HotKeyCenter sharedCenter] sendEvent:event];
9         [super sendEvent:event];
10 }
11
12 @end