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

macosx: fix search field size on Lion (fixes #5566)

needs testing on Snow Leopard and Leopard
(cherry picked from commit f7aedf89f00ff9f67c74673d302dbf115440b1ea)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 5d6ac6b5
......@@ -271,6 +271,15 @@ static VLCMainWindow *_o_sharedInstance = nil;
[o_fullscreen_btn removeFromSuperviewWithoutNeedingDisplay];
}
if (OSX_LION)
{
/* the default small size of the search field is slightly different on Lion, let's work-around that */
NSRect frame;
frame = [o_search_fld frame];
frame.origin.y = frame.origin.y + 2.0;
frame.size.height = frame.size.height - 1.0;
[o_search_fld setFrame: frame];
}
/* create the sidebar */
o_sidebaritems = [[NSMutableArray alloc] init];
......
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