From c4705a0a678ac523b243c7b68ce27fbf5e44b61a Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 10 Sep 2025 11:41:04 +0200 Subject: Use the bundle not the things.png --- QSThingsPlugin/QSThingsPluginSource.m | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'QSThingsPlugin') diff --git a/QSThingsPlugin/QSThingsPluginSource.m b/QSThingsPlugin/QSThingsPluginSource.m index 3f5f06e..08984ef 100644 --- a/QSThingsPlugin/QSThingsPluginSource.m +++ b/QSThingsPlugin/QSThingsPluginSource.m @@ -23,7 +23,7 @@ } - (NSImage *)iconForEntry:(NSDictionary *)dict { - return [[NSBundle bundleForClass:[self class]] imageNamed:@"things"]; + return [QSResourceManager imageNamed:@"com.culturedcode.ThingsMac"]; } - (NSView *)settingsView { @@ -45,7 +45,8 @@ #pragma mark - Object Handler Methods - (void)setQuickIconForObject:(QSObject *)object { - // Not yet + [object + setIcon:[QSResourceManager imageNamed:@"com.culturedcode.ThingsMac"]]; } - (BOOL)objectHasChildren:(QSObject *)object { -- cgit