only show the priority selector when over the priority column, not the row

This commit is contained in:
Mitchell Livingston 2007-06-24 14:13:57 +00:00
parent ecc93b8032
commit f7f032142a
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@
if (event)
{
NSPoint point = [self convertPoint: [event locationInWindow] fromView: nil];
if (NSPointInRect(point, [self frame]))
if ([self columnAtPoint: point] == [self columnWithIdentifier: @"Priority"])
row = [self rowAtPoint: point];
}