From 7f548f500563594e127d71504e73b27af58574fc Mon Sep 17 00:00:00 2001 From: Kent Sutherland Date: Fri, 14 Nov 2003 12:51:43 +0000 Subject: [PATCH] Fixed pivot padding from the right. --- ITPivotWindowEffect.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ITPivotWindowEffect.m b/ITPivotWindowEffect.m index cf92f12..7c59705 100755 --- a/ITPivotWindowEffect.m +++ b/ITPivotWindowEffect.m @@ -193,7 +193,7 @@ transform.tx = -( 32.0 + [[_window screen] visibleFrame].origin.x ); } else if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionRight ) { transform.tx = -( 32.0 + [[_window screen] visibleFrame].origin.x ) + [_window frame].size.width; - appearPoint.x = -(([[_window screen] visibleFrame].size.width + [[_window screen] visibleFrame].origin.x) - 32.0); + appearPoint.x = -(([[_window screen] visibleFrame].size.width + [[_window screen] visibleFrame].origin.x) - 64.0); } else if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionCenter ) { appearPoint.x = ( [_window frame].size.width - [[_window screen] visibleFrame].size.width ) / 2; } -- 2.20.1