We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de096a3 commit 78f82e0Copy full SHA for 78f82e0
Source/SPTableContent.m
@@ -1103,8 +1103,7 @@ - (NSString *)tableFilterString
1103
// If the clause has the placeholder $BINARY that placeholder will be replaced
1104
// by BINARY if the user pressed ⇧ while invoking 'Filter' otherwise it will
1105
// replaced by @"".
1106
- BOOL caseSensitive = (([[[NSApp onMainThread] currentEvent] modifierFlags]
1107
- & (NSShiftKeyMask|NSControlKeyMask|NSAlternateKeyMask|NSCommandKeyMask)) > 0);
+ BOOL caseSensitive = (([[[NSApp onMainThread] currentEvent] modifierFlags] & NSShiftKeyMask) > 0);
1108
1109
if(contentFilters == nil) {
1110
NSLog(@"Fatal error while retrieving content filters. No filters found.");
0 commit comments