Changeset 23060
- Timestamp:
- 04/03/2008 03:51:33 PM (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/adium-1.2/Frameworks/Adium Framework/Source/AIMessageEntryTextView.m
r22965 r23060 884 884 - (void)_positionIndicator:(NSNotification *)notification 885 885 { 886 NSRect visRect = [[self enclosingScrollView] documentVisibleRect];886 NSRect visRect = [[self superview] bounds]; 887 887 NSRect indFrame = [indicator frame]; 888 889 [indicator setFrameOrigin:NSMakePoint(NSMaxX(visRect) - indFrame.size.width - 2, NSMaxY(visRect) - indFrame.size.height - 2)]; 888 [indicator setFrameOrigin:NSMakePoint(NSMaxX(visRect) - NSWidth(indFrame) - 10, NSMaxY(visRect) - indFrame.size.height - 2)]; 890 889 [[self enclosingScrollView] setNeedsDisplay:YES]; 891 890 }