Commit f6c874c9 authored by Felix Paul Kühne's avatar Felix Paul Kühne Committed by Jean-Baptiste Kempf

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

(cherry picked from commit c0a55dc7)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 1c89be66
......@@ -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