git.ithinksw.org
/
ITKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
"Fixed" ITButton... it's not REALLY fixed, as that's impossible, but it
[ITKit.git]
/
ITButtonCell.m
diff --git
a/ITButtonCell.m
b/ITButtonCell.m
index
fa3c5bb
..
938e571
100755
(executable)
--- a/
ITButtonCell.m
+++ b/
ITButtonCell.m
@@
-86,10
+86,14
@@
if ( [self isHighlighted] ) {
alpha = 0.50;
}
-
+
[[NSColor colorWithCalibratedWhite:0.0 alpha:alpha] set];
[path fill];
}
+- (BOOL)isOpaque
+{
+ return NO;
+}
@end