diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-09-08 22:09:42 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-09-08 22:09:42 +0200 |
| commit | 2d7a7f25cbd4b2ecdd326b8254eb94566d91e198 (patch) | |
| tree | 069f6560093d819e17ce83ecec60bb2527e6068d /QSDeliciousPlugIn_Source.m | |
| parent | 2d247ab64b84cf80d1beedb9521d7488bcb99f18 (diff) | |
Keep the original images
Diffstat (limited to 'QSDeliciousPlugIn_Source.m')
| -rw-r--r-- | QSDeliciousPlugIn_Source.m | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/QSDeliciousPlugIn_Source.m b/QSDeliciousPlugIn_Source.m index 49526e1..e864514 100644 --- a/QSDeliciousPlugIn_Source.m +++ b/QSDeliciousPlugIn_Source.m @@ -285,14 +285,8 @@ #pragma mark - Object Handler Methods - (void)setQuickIconForObject:(QSObject *)object { - if (@available(macOS 11.0, *)) { - NSImage *image = [NSImage imageWithSystemSymbolName:@"tag" - accessibilityDescription:@"Bookmark"]; - [object setIcon:image]; - } else { - [object setIcon:[[NSBundle bundleForClass:[self class]] - imageNamed:@"bookmark_icon"]]; - } + [object setIcon:[[NSBundle bundleForClass:[self class]] + imageNamed:@"bookmark_icon"]]; } // All our objects will have children. URLs will have tags, and tags will have |