Commit 268fc5d2 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: reflect intf-change modification

parent 71da61e0
...@@ -473,7 +473,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -473,7 +473,7 @@ static VLCMain *_o_sharedMainInstance = nil;
[o_mi_double_window setKeyEquivalent: [self VLCKeyToString: o_key]]; [o_mi_double_window setKeyEquivalent: [self VLCKeyToString: o_key]];
[o_mi_double_window setKeyEquivalentModifierMask: [self VLCModifiersToCocoa:o_key]]; [o_mi_double_window setKeyEquivalentModifierMask: [self VLCModifiersToCocoa:o_key]];
var_Create( p_intf, "intf-change", VLC_VAR_BOOL ); var_Create( p_intf, "intf-change", VLC_VAR_VOID );
[self setSubmenusEnabled: FALSE]; [self setSubmenusEnabled: FALSE];
[o_volumeslider setEnabled: YES]; [o_volumeslider setEnabled: YES];
......
...@@ -386,7 +386,7 @@ static VLCInfo *_o_sharedInstance = nil; ...@@ -386,7 +386,7 @@ static VLCInfo *_o_sharedInstance = nil;
playlist_t * p_playlist = pl_Get( VLCIntf ); playlist_t * p_playlist = pl_Get( VLCIntf );
input_item_WriteMeta( VLC_OBJECT(p_playlist), p_item ); input_item_WriteMeta( VLC_OBJECT(p_playlist), p_item );
var_SetBool( p_playlist, "intf-change", true ); var_SetBool( p_playlist, "intf-change" );
[self updatePanelWithItem: p_item]; [self updatePanelWithItem: p_item];
[o_saveMetaData_btn setEnabled: NO]; [o_saveMetaData_btn setEnabled: NO];
......
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