Commit 210225b2 authored by Brendon Justin's avatar Brendon Justin Committed by Felix Paul Kühne

macosx: fix hiding of shuffle & repeat buttons

Fixes #7333
Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent cd956123
...@@ -321,6 +321,10 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -321,6 +321,10 @@ static VLCMainWindow *_o_sharedInstance = nil;
if (b_show_jump_buttons) if (b_show_jump_buttons)
[self addJumpButtons]; [self addJumpButtons];
b_show_playmode_buttons = config_GetInt( VLCIntf, "macosx-show-playmode-buttons" );
if (!b_show_playmode_buttons)
[self removePlaymodeButtons];
/* interface builder action */ /* interface builder action */
float f_threshold_height = f_min_video_height + [o_bottombar_view frame].size.height; float f_threshold_height = f_min_video_height + [o_bottombar_view frame].size.height;
if( b_dark_interface ) if( b_dark_interface )
......
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