Commit c0a55dc7 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fixed trivial appearance issue with the time slider's gray gradient

parent a7026d19
......@@ -418,6 +418,12 @@ static VLCMainWindow *_o_sharedInstance = nil;
}
else
{
NSRect frame;
frame = [o_time_sld_fancygradient_view frame];
frame.size.height = frame.size.height - 1;
frame.origin.y = frame.origin.y + 1;
[o_time_sld_fancygradient_view setFrame: frame];
[o_video_view setFrame: [o_split_view frame]];
[o_playlist_table setBorderType: NSNoBorder];
[o_sidebar_scrollview setBorderType: NSNoBorder];
......
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