mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-16 15:41:27 +00:00
New: high resolution status icons.
Also a help text tweak.
This commit is contained in:
@@ -139,7 +139,7 @@ AppController *SharedAppControllerInstance = nil;
|
||||
- (NSImage *)iconActive
|
||||
{
|
||||
if (!_iconActive)
|
||||
_iconActive = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:@"icon-active.png"]];
|
||||
_iconActive = [NSImage imageNamed:@"icon-active"];
|
||||
|
||||
return _iconActive;
|
||||
}
|
||||
@@ -147,7 +147,7 @@ AppController *SharedAppControllerInstance = nil;
|
||||
- (NSImage *)iconInactive
|
||||
{
|
||||
if (!_iconInactive)
|
||||
_iconInactive = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:@"icon-inactive.png"]];
|
||||
_iconInactive = [NSImage imageNamed:@"icon-inactive"];
|
||||
|
||||
return _iconInactive;
|
||||
}
|
||||
@@ -155,7 +155,7 @@ AppController *SharedAppControllerInstance = nil;
|
||||
- (NSImage *)iconWorking
|
||||
{
|
||||
if (!_iconWorking)
|
||||
_iconWorking = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:@"icon-working.png"]];
|
||||
_iconWorking = [NSImage imageNamed:@"icon-working"];
|
||||
|
||||
return _iconWorking;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user