Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-iOS
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
268
Issues
268
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLC-iOS
Commits
9a5e8825
Commit
9a5e8825
authored
Nov 02, 2015
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server list: show generic server icon if server doesn't provide one
parent
689a421a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
VLC for Apple TV/Assets.xcassets/NetworkBrowsing/serverIcon.imageset/Contents.json
...cassets/NetworkBrowsing/serverIcon.imageset/Contents.json
+13
-0
VLC for Apple TV/Assets.xcassets/NetworkBrowsing/serverIcon.imageset/serverIcon@3x.png
...ets/NetworkBrowsing/serverIcon.imageset/serverIcon@3x.png
+0
-0
VLC for Apple TV/VLCServerListTVTableViewController.m
VLC for Apple TV/VLCServerListTVTableViewController.m
+1
-1
No files found.
VLC for Apple TV/Assets.xcassets/NetworkBrowsing/serverIcon.imageset/Contents.json
0 → 100644
View file @
9a5e8825
{
"images"
:
[
{
"idiom"
:
"tv"
,
"filename"
:
"serverIcon@3x.png"
,
"scale"
:
"1x"
}
],
"info"
:
{
"version"
:
1
,
"author"
:
"xcode"
}
}
\ No newline at end of file
VLC for Apple TV/Assets.xcassets/NetworkBrowsing/serverIcon.imageset/serverIcon@3x.png
0 → 100644
View file @
9a5e8825
2.55 KB
VLC for Apple TV/VLCServerListTVTableViewController.m
View file @
9a5e8825
...
...
@@ -99,7 +99,7 @@
UITableViewCell
*
cell
=
[
tableView
dequeueReusableCellWithIdentifier
:
VLCLocalServerTVCell
forIndexPath
:
indexPath
];
id
<
VLCLocalNetworkService
>
service
=
[
self
.
discoveryController
networkServiceForIndexPath
:
indexPath
];
cell
.
textLabel
.
text
=
service
.
title
;
cell
.
imageView
.
image
=
service
.
icon
;
cell
.
imageView
.
image
=
service
.
icon
?
service
.
icon
:
[
UIImage
imageNamed
:
@"serverIcon"
]
;
return
cell
;
}
...
...
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