Fixed merging issue

This commit is contained in:
michael starke
2013-12-12 02:14:15 +01:00
parent a01e5ce54f
commit 28fdf9f57a

View File

@@ -344,7 +344,7 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell";
#pragma mark Filtering
- (void)showFilter:(id)sender {
if([self _showsFilterBar]) {
if(self.isDisplayingFilterbar) {
[self.filterSearchField selectText:self];
}
@@ -418,7 +418,7 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell";
- (BOOL)control:(NSControl*)control textView:(NSTextView*)textView doCommandBySelector:(SEL)commandSelector
{
if (commandSelector == @selector(insertNewline:))
if(commandSelector == @selector(insertNewline:))
{
self.filter = [self.filterSearchField stringValue];
}