remove unnecessary NSLog()
This commit is contained in:
parent
0b3739dace
commit
c77d03c040
|
@ -118,8 +118,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
NSRange visibleRows = [self rowsInRect: [self visibleRect]];
|
NSRange visibleRows = [self rowsInRect: [self visibleRect]];
|
||||||
if (visibleRows.length == 0){NSLog(@"asdgshs");
|
if (visibleRows.length == 0)
|
||||||
return;}
|
return;
|
||||||
|
|
||||||
int col = [self columnWithIdentifier: @"Priority"];
|
int col = [self columnWithIdentifier: @"Priority"];
|
||||||
NSTrackingAreaOptions options = NSTrackingEnabledDuringMouseDrag | NSTrackingMouseEnteredAndExited | NSTrackingActiveAlways;
|
NSTrackingAreaOptions options = NSTrackingEnabledDuringMouseDrag | NSTrackingMouseEnteredAndExited | NSTrackingActiveAlways;
|
||||||
|
|
Loading…
Reference in New Issue