Browse Source

Strict check for table.

v1.4.1
Abhishek Banthia 8 years ago
parent
commit
cdc6e14696
  1. BIN
      Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate
  2. 5
      Clocker/Preferences/CLPreferencesViewController.m

BIN
Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate generated

Binary file not shown.

5
Clocker/Preferences/CLPreferencesViewController.m

@ -693,6 +693,9 @@ NSString *const CLTryAgainMessage = @"Try again, maybe?";
#pragma mark -
-(void)tableView:(NSTableView *)tableView didClickTableColumn:(NSTableColumn *)tableColumn
{
if (tableView == self.timezoneTableView)
{
static NSStringCompareOptions comparisonOptions = NSCaseInsensitiveSearch | NSNumericSearch | NSForcedOrderingSearch | NSWidthInsensitiveSearch;
@ -744,6 +747,8 @@ NSString *const CLTryAgainMessage = @"Try again, maybe?";
[self.timezoneTableView reloadData];
[self refreshMainTableview];
}
}
#pragma mark Other Methods

Loading…
Cancel
Save