Commit 53f9f648 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fixed minor display issue with the Equalizer button (#4654)

parent a823e39f
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
@interface VLCEqualizer : NSObject @interface VLCEqualizer : NSObject
{ {
IBOutlet id o_btn_equalizer; IBOutlet id o_btn_equalizer;
IBOutlet id o_btn_equalizer_embedded;
IBOutlet id o_ckb_2pass; IBOutlet id o_ckb_2pass;
IBOutlet id o_ckb_enable; IBOutlet id o_ckb_enable;
IBOutlet id o_fld_preamp; IBOutlet id o_fld_preamp;
......
...@@ -368,6 +368,11 @@ static bool GetFiltersStatus( intf_thread_t *p_intf, ...@@ -368,6 +368,11 @@ static bool GetFiltersStatus( intf_thread_t *p_intf,
[o_btn_equalizer setState: NSOffState]; [o_btn_equalizer setState: NSOffState];
} }
- (void)windowDidBecomeKey:(NSNotification *)aNotification
{
[o_btn_equalizer setState: NSOnState];
}
- (void)awakeFromNib - (void)awakeFromNib
{ {
int i; int i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment