Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
acb6f56f
Commit
acb6f56f
authored
Nov 27, 2015
by
Felix Paul Kühne
Browse files
OSO: show rating isntead of language since it is written in bold letters above the results already
parent
b2e69324
Changes
1
Show whitespace changes
Inline
Side-by-side
Apple-TV/Playback/Playback Info/VLCPlaybackInfoSubtitlesFetcherViewController.m
View file @
acb6f56f
...
@@ -150,7 +150,7 @@
...
@@ -150,7 +150,7 @@
if
(
indexPath
.
section
!=
0
)
{
if
(
indexPath
.
section
!=
0
)
{
MDFSubtitleItem
*
item
=
_searchResults
[
indexPath
.
row
];
MDFSubtitleItem
*
item
=
_searchResults
[
indexPath
.
row
];
cell
.
textLabel
.
text
=
item
.
name
;
cell
.
textLabel
.
text
=
item
.
name
;
cell
.
detailTextLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@ - %@"
,
item
.
language
,
item
.
format
];
cell
.
detailTextLabel
.
text
=
[
NSString
stringWithFormat
:
@"%@ - %@"
,
item
.
rating
,
[
item
.
format
uppercaseStringWithLocale
:[
NSLocale
currentLocale
]]
];
cell
.
accessoryType
=
UITableViewCellAccessoryNone
;
cell
.
accessoryType
=
UITableViewCellAccessoryNone
;
}
else
{
}
else
{
NSString
*
selectedLocale
=
[[
NSUserDefaults
standardUserDefaults
]
objectForKey
:
kVLCSettingLastUsedSubtitlesSearchLanguage
];
NSString
*
selectedLocale
=
[[
NSUserDefaults
standardUserDefaults
]
objectForKey
:
kVLCSettingLastUsedSubtitlesSearchLanguage
];
...
...
Write
Preview
Supports
Markdown
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