aboutsummaryrefslogtreecommitdiff
path: root/QSThingsPlugin
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-09-10 11:41:04 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2025-09-10 11:41:04 +0200
commitc4705a0a678ac523b243c7b68ce27fbf5e44b61a (patch)
tree764521e7cf954f867c33054549f7d619944c0670 /QSThingsPlugin
parentc791858db3de3568f0ea2839c79b360a0dfb15ab (diff)
Use the bundle not the things.png
Diffstat (limited to 'QSThingsPlugin')
-rw-r--r--QSThingsPlugin/QSThingsPluginSource.m5
1 files changed, 3 insertions, 2 deletions
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 {