Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
b8d90e93
Commit
b8d90e93
authored
Jul 26, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed subtitle encoding selection
parent
252fabc7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
NEWS
NEWS
+2
-0
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+3
-3
No files found.
NEWS
View file @
b8d90e93
...
...
@@ -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
...
...
modules/gui/macosx/simple_prefs.m
View file @
b8d90e93
...
...
@@ -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
]
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment