Skip to content
Snippets Groups Projects
Commit c0a55dc7 authored by Felix Paul Kühne's avatar Felix Paul Kühne
Browse files

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

parent a7026d19
No related branches found
No related tags found
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment