Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-iOS
Manage
Activity
Members
Labels
Plan
Issues
259
Issue boards
Milestones
Wiki
Code
Merge requests
22
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-iOS
Merge requests
!150
tvOS playback: fix foreground color for tab bar items when focussed (closes
#808
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
tvOS playback: fix foreground color for tab bar items when focussed (closes
#808
)
fkuehne/vlc-ios:tvostabbarcolorfix
into
master
Overview
2
Commits
1
Pipelines
0
Changes
1
Merged
Felix Paul Kühne
requested to merge
fkuehne/vlc-ios:tvostabbarcolorfix
into
master
5 years ago
Overview
2
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 4
28894416
5 years ago
version 3
8d5d0df5
5 years ago
version 2
abfd20d5
5 years ago
version 1
6ab31181
5 years ago
master (base)
and
latest version
latest version
f6e28cd3
1 commit,
5 years ago
version 4
28894416
1 commit,
5 years ago
version 3
8d5d0df5
1 commit,
5 years ago
version 2
abfd20d5
1 commit,
5 years ago
version 1
6ab31181
1 commit,
5 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Apple-TV/Playback/Playback Info/VLCPlaybackInfoTVViewController.m
+
1
−
1
Options
@@ -113,7 +113,7 @@
UITabBarItem
*
tabBarItemApprearance
=
[
UITabBarItem
appearanceWhenContainedInInstancesOfClasses
:@[[
VLCPlaybackInfoTVTabBarController
class
]]];
NSDictionary
*
attributesSelected
=
@{
NSForegroundColorAttributeName
:
[
UIColor
colorWithWhite
:
0
.
75
alpha
:
1
.
0
]};
[
tabBarItemApprearance
setTitleTextAttributes
:
attributesSelected
forState
:
UIControlStateSelected
];
NSDictionary
*
attributesFocused
=
@{
NSForegroundColorAttributeName
:
[
UIColor
colorWithWhite
:
1
.
0
alpha
:
1
.
0
]};
NSDictionary
*
attributesFocused
=
@{
NSForegroundColorAttributeName
:
[
UIColor
blackColor
]};
[
tabBarItemApprearance
setTitleTextAttributes
:
attributesFocused
forState
:
UIControlStateFocused
];
}
Loading