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
741bbc5c
Commit
741bbc5c
authored
Nov 25, 2015
by
Tobias
Browse files
fix missing negation in fix for volume overlay
fixes #15963
parent
7ec2c746
Changes
1
Hide whitespace changes
Inline
Side-by-side
Sources/VLCMovieViewController.m
View file @
741bbc5c
...
...
@@ -546,7 +546,7 @@ typedef NS_ENUM(NSInteger, VLCPanType) {
_controlsHidden
=
hidden
;
CGFloat
alpha
=
_controlsHidden
?
0
.
0
f
:
1
.
0
f
;
[
self
.
controlPanelController
beginAppearanceTransition
:
hidden
animated
:
animated
];
[
self
.
controlPanelController
beginAppearanceTransition
:
!
hidden
animated
:
animated
];
if
(
!
_controlsHidden
)
{
_controllerPanel
.
alpha
=
0
.
0
f
;
...
...
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