diff --git a/Changelog b/Changelog index 4e16eae1d..1b333473c 100644 --- a/Changelog +++ b/Changelog @@ -6,5 +6,4 @@ Fixed 10.3 bug where files would not be removed from the playlist. Added tooltips and control menu. Fixed play button so it now plays the currently selected song if no song is playing. Otherwise, it does pause/resume. Changed info panel to a drawer. - -TODO: have button images change, play to pause...shuffle and repeat +Misc UI fixes. diff --git a/Icons/repeat_blue.png b/Icons/repeat_off.png similarity index 52% rename from Icons/repeat_blue.png rename to Icons/repeat_off.png index 1d6547a89..c466d76d3 100644 Binary files a/Icons/repeat_blue.png and b/Icons/repeat_off.png differ diff --git a/Icons/repeat_gray.png b/Icons/repeat_on.png similarity index 100% rename from Icons/repeat_gray.png rename to Icons/repeat_on.png diff --git a/Icons/shuffle_blue.png b/Icons/shuffle_off.png similarity index 56% rename from Icons/shuffle_blue.png rename to Icons/shuffle_off.png index c3f4c9dfa..4aa006f00 100644 Binary files a/Icons/shuffle_blue.png and b/Icons/shuffle_off.png differ diff --git a/Icons/shuffle_gray.png b/Icons/shuffle_on.png similarity index 100% rename from Icons/shuffle_gray.png rename to Icons/shuffle_on.png diff --git a/InfoView.h b/InfoView.h new file mode 100644 index 000000000..946850e29 --- /dev/null +++ b/InfoView.h @@ -0,0 +1,8 @@ +/* InfoView */ + +#import + +@interface InfoView : NSView +{ +} +@end diff --git a/InfoView.m b/InfoView.m new file mode 100644 index 000000000..959fc68ae --- /dev/null +++ b/InfoView.m @@ -0,0 +1,21 @@ +#import "InfoView.h" + +@implementation InfoView +/* +- (id)initWithFrame:(NSRect)frameRect +{ + if ((self = [super initWithFrame:frameRect]) != nil) { + // Add initialization code here + } + return self; +} + +- (void)drawRect:(NSRect)rect +{ +} +*/ +- (BOOL)isFlipped +{ + return YES; +} +@end