Changeset 23059
- Timestamp:
- 04/03/2008 03:51:06 PM (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Frameworks/Adium Framework/Source/AIMessageEntryTextView.m
r22964 r23059 889 889 - (void)_positionIndicator:(NSNotification *)notification 890 890 { 891 NSRect visRect = [[self enclosingScrollView] documentVisibleRect];891 NSRect visRect = [[self superview] bounds]; 892 892 NSRect indFrame = [indicator frame]; 893 894 [indicator setFrameOrigin:NSMakePoint(NSMaxX(visRect) - indFrame.size.width - 2, NSMaxY(visRect) - indFrame.size.height - 2)]; 893 [indicator setFrameOrigin:NSMakePoint(NSMaxX(visRect) - NSWidth(indFrame) - 10, NSMaxY(visRect) - indFrame.size.height - 2)]; 895 894 [[self enclosingScrollView] setNeedsDisplay:YES]; 896 895 }