forkad från Mojave/ExactTime
		
	*Added an option to add estimated time to the exact time. Example: "48m ago • 09:41" *Added an option to add minutes to "Xh ago" Example: "5h 47m ago" *You can also combine these two options to get something like this: "5h 47m ago • 09:41" *Added an icon to the preferences.
		
			
				
	
	
		
			21 rader
		
	
	
		
			378 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			21 rader
		
	
	
		
			378 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
| #import <Preferences/Preferences.h>
 | |
| 
 | |
| @interface ExactTimeprefsListController: PSListController {
 | |
| }
 | |
| @end
 | |
| 
 | |
| @implementation ExactTimeprefsListController
 | |
| - (id)specifiers {
 | |
| 	if(_specifiers == nil) {
 | |
| 		_specifiers = [[self loadSpecifiersFromPlistName:@"ExactTimeprefs" target:self] retain];
 | |
| 	}
 | |
| 	return _specifiers;
 | |
| }
 | |
| 
 | |
| -(void)apply{
 | |
| [self.view endEditing:YES];
 | |
| }
 | |
| @end
 | |
| 
 | |
| // vim:ft=objc
 |