On Mar 8, 2010, at 10:20 PM, Steve Cronin wrote: > Folks; > > I have a tableView which is working pretty handily. > > I support a form of import by dropping a text file on it. > The backing arrayController returns an NSTableViewDropAbove for UI > feedback purposes. > (the row the file is dropped on (or above) doesn't actually matter) > I chose NSTableViewDropAbove because DropOn might cause some to feel > that a replacement would occur…. > > When I have complete the import process I call rearrangeObjects and all is > well > there is a bound filter predicate in the windowController > > EXCEPT the targetting indicator in the tableView remains visible… > > How do I clear this? >
This sounds like a bug - if you do have a reproducible case, please log a bug in bugreporter.apple.com (and include your test case and sample code, if possible). It sounds like you are going to have to force a redraw; call -setNeedsDisplayInRect: around the rows that have the affected issue. A brute force approach would be -setNeedsDisplay:YES corbin _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
