Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
Comment out logging (mac)
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrekV committed May 15, 2018
1 parent ba1c707 commit be516a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ui/osx/TogglDesktop/TimeEntryEditViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ - (NSView *) tableView:(NSTableView *)tableView
{
item = [dataSource.filteredOrderedKeys objectAtIndex:row];
}
//NSLog(@"%@", item);
// NSLog(@"%@", item);
NSAssert(item != nil, @"view item from viewitems array is nil");

AutoCompleteTableCell *cell = [tableView makeViewWithIdentifier:@"AutoCompleteTableCell"
Expand Down
2 changes: 1 addition & 1 deletion src/ui/osx/TogglDesktop/TimerEditViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ - (void)controlTextDidChange:(NSNotification *)aNotification
AutoCompleteInput *field = [aNotification object];
[self.liteAutocompleteDataSource setFilter:[field stringValue]];
[field.autocompleteTableView resetSelected];
//NSLog(@"Filter: %@", [field stringValue]);
// NSLog(@"Filter: %@", [field stringValue]);
return;
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/ui/osx/TogglDesktop/test2/AutoCompleteInput.m
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ - (void)setPos:(int)posy

- (void)toggleTableView:(int)itemCount
{
//NSLog(@"// ** Toggle table (items: %d) ** //", itemCount);
// NSLog(@"// ** Toggle table (items: %d) ** //", itemCount);
if (itemCount > 0 || (itemCount == 0 && self.lastItemCount > 0))
{
if (self.autocompleteTableContainer.hidden)
Expand All @@ -95,7 +95,7 @@ - (void)updateDropdownHeight:(int)count
int h = MIN((count * self.itemHeight), self.posY - 50);

self.heightConstraint.constant = h;
//NSLog(@"Update table position | H: %d, POSY: %d", h, self.posY);
// NSLog(@"Update table position | H: %d, POSY: %d", h, self.posY);
}

- (void)keyUp:(NSEvent *)event
Expand Down

0 comments on commit be516a6

Please sign in to comment.