git.ithinksw.org
/
ITKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
CoreImage effect loads only with OS X 10.4.0 through 10.4.5. It crashes 10.4.6 currently.
[ITKit.git]
/
ITSlideHorizontallyWindowEffect.m
diff --git
a/ITSlideHorizontallyWindowEffect.m
b/ITSlideHorizontallyWindowEffect.m
old mode 100755
(executable)
new mode 100644
(file)
index
1a26d1f
..
60122fd
--- a/
ITSlideHorizontallyWindowEffect.m
+++ b/
ITSlideHorizontallyWindowEffect.m
@@
-187,16
+187,17
@@
{
CGAffineTransform transform;
NSPoint translation;
{
CGAffineTransform transform;
NSPoint translation;
-
+ NSRect winFrame = [_window frame];
+
if ( [_window horizontalPosition] == ITWindowPositionLeft ) {
if ( [_window horizontalPosition] == ITWindowPositionLeft ) {
- translation.x = ( -(
[_window frame]
.origin.x) + distance ) ;
+ translation.x = ( -(
winFrame
.origin.x) + distance ) ;
} else if ( [_window horizontalPosition] == ITWindowPositionRight ) {
} else if ( [_window horizontalPosition] == ITWindowPositionRight ) {
- translation.x = ( -(
[_window frame]
.origin.x) - distance ) ;
+ translation.x = ( -(
winFrame
.origin.x) - distance ) ;
} else {
} else {
- translation.x = ( -(
[_window frame]
.origin.x) ) ;
+ translation.x = ( -(
winFrame
.origin.x) ) ;
}
}
-
translation.y = -( [[_window screen] frame].size.height - [_window frame].origin.y - [_window frame].size.height )
;
+
translation.y = winFrame.origin.y + winFrame.size.height - [[NSScreen mainScreen] frame].size.height
;
transform = CGAffineTransformMakeTranslation( translation.x, translation.y );
transform = CGAffineTransformMakeTranslation( translation.x, translation.y );