mirror of
https://github.com/videolan/vlc.git
synced 2024-12-11 18:54:36 +08:00
os x: fix preferences to leave x264 preset/tune empty
Signed-off-by: Ilkka Ollakka <ileoo@videolan.org> (cherry picked from commit c521391d4c4a8bbcfed35e09705698099798efd9) Signed-off-by: Ilkka Ollakka <ileoo@videolan.org>
This commit is contained in:
parent
07bb7d76ca
commit
14bb0136b6
@ -1074,9 +1074,13 @@ o_textfield = [[[NSSecureTextField alloc] initWithFrame: s_rc] retain]; \
|
||||
-2, 0, o_textfieldTooltip )
|
||||
[o_combo setAutoresizingMask:NSViewWidthSizable ];
|
||||
for( i_index = 0; i_index < p_item->i_list; i_index++ )
|
||||
if( p_item->value.psz && p_item->ppsz_list[i_index] &&
|
||||
{
|
||||
if( !p_item->value.psz && !p_item->ppsz_list[i_index] )
|
||||
[o_combo selectItemAtIndex: i_index];
|
||||
else if( p_item->value.psz && p_item->ppsz_list[i_index] &&
|
||||
!strcmp( p_item->value.psz, p_item->ppsz_list[i_index] ) )
|
||||
[o_combo selectItemAtIndex: i_index];
|
||||
}
|
||||
[self addSubview: o_combo];
|
||||
}
|
||||
return self;
|
||||
@ -1118,9 +1122,13 @@ o_textfield = [[[NSSecureTextField alloc] initWithFrame: s_rc] retain]; \
|
||||
char *psz_value = config_GetPsz( VLCIntf, p_item->psz_name );
|
||||
|
||||
for( i_index = 0; i_index < p_item->i_list; i_index++ )
|
||||
if( psz_value && p_item->ppsz_list[i_index] &&
|
||||
{
|
||||
if( !psz_value && !p_item->ppsz_list[i_index] )
|
||||
[o_combo selectItemAtIndex: i_index];
|
||||
else if( psz_value && p_item->ppsz_list[i_index] &&
|
||||
!strcmp( psz_value, p_item->ppsz_list[i_index] ) )
|
||||
[o_combo selectItemAtIndex: i_index];
|
||||
}
|
||||
|
||||
free( psz_value );
|
||||
[super resetValues];
|
||||
|
Loading…
Reference in New Issue
Block a user