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

macosx: fixed subtitle encoding selection

parent 252fabc7
......@@ -24,6 +24,8 @@ Qt Interface:
Mac OS X Interface:
* Added options to disable support for Apple Remote and Media Keys
* Fixed options for Volume, Last.fm password and Subtitle Encoding
* Fixed redraw issues when autosizing the video window
* Preferences panel now includes help through tool-tips
* More reliable Information and Messages panels
* Fix various crashes
......
......@@ -987,9 +987,9 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
if( b_osdSettingChanged )
{
config_PutInt( p_intf, "osd", [o_osd_osd_ckb state] );
if( [o_osd_encoding_pop indexOfSelectedItem] >= 0 )
config_PutPsz( p_intf, "subsdec-encoding", [[[o_osd_encoding_pop selectedItem] title] UTF8String] );
SaveStringList( o_osd_encoding_pop, "subsdec-encoding" );
// if( [o_osd_encoding_pop indexOfSelectedItem] >= 0 )
// config_PutPsz( p_intf, "subsdec-encoding", [[[o_osd_encoding_pop selectedItem] title] UTF8String] );
config_PutPsz( p_intf, "sub-language", [[o_osd_lang_fld stringValue] UTF8String] );
......
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