git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Now properly escaping all strings so ampersands now submit. Added a couple of NSLogs...
[MenuTunes.git]
/
StatusItemHack.m
diff --git
a/StatusItemHack.m
b/StatusItemHack.m
index
296d185
..
d493046
100755
(executable)
--- a/
StatusItemHack.m
+++ b/
StatusItemHack.m
@@
-1,5
+1,5
@@
#import "StatusItemHack.h"
#import "StatusItemHack.h"
-#import "
New
MainController.h"
+#import "MainController.h"
@implementation StatusItemHack
@implementation StatusItemHack
@@
-10,7
+10,9
@@
- (void)mouseDown:(NSEvent *)event
{
- (void)mouseDown:(NSEvent *)event
{
- [[MainController sharedController] menuClicked];
+ if ([self isEnabled]) {
+ [[MainController sharedController] menuClicked];
+ }
[super mouseDown:event];
}
[super mouseDown:event];
}