mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-22 22:51:39 +00:00
[#42 state:fixed] Added Aperture support in dupeGuru PE.
This commit is contained in:
@@ -13,4 +13,5 @@ http://www.hardcoded.net/licenses/bsd_license
|
||||
{
|
||||
}
|
||||
- (IBAction)addiPhoto:(id)sender;
|
||||
- (IBAction)addAperture:(id)sender;
|
||||
@end
|
||||
|
||||
@@ -24,10 +24,18 @@ http://www.hardcoded.net/licenses/bsd_license
|
||||
NSMenuItem *mi = [m insertItemWithTitle:TR(@"Add iPhoto Library") action:@selector(addiPhoto:)
|
||||
keyEquivalent:@"" atIndex:1];
|
||||
[mi setTarget:self];
|
||||
mi = [m insertItemWithTitle:TR(@"Add Aperture Library") action:@selector(addAperture:)
|
||||
keyEquivalent:@"" atIndex:2];
|
||||
[mi setTarget:self];
|
||||
}
|
||||
|
||||
- (IBAction)addiPhoto:(id)sender
|
||||
{
|
||||
[self addDirectory:@"iPhoto Library"];
|
||||
}
|
||||
|
||||
- (IBAction)addAperture:(id)sender
|
||||
{
|
||||
[self addDirectory:@"Aperture Library"];
|
||||
}
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user