Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLC-iOS
Commits
e056eb33
Commit
e056eb33
authored
Aug 23, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playback: adapt custom 'done' button for the future
parent
923be286
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
AspenProject/VLCMovieViewController.m
AspenProject/VLCMovieViewController.m
+6
-2
No files found.
AspenProject/VLCMovieViewController.m
View file @
e056eb33
...
...
@@ -195,8 +195,12 @@
[
self
.
aspectRatioButton
setBackgroundImage
:[
UIImage
imageNamed
:
@"ratioButtonHighlight"
]
forState
:
UIControlStateHighlighted
];
[
self
.
aspectRatioButton
setImage
:[
UIImage
imageNamed
:
@"ratioIcon"
]
forState
:
UIControlStateNormal
];
[
self
.
toolbar
setBackgroundImage
:[
UIImage
imageNamed
:
@"seekbarBg"
]
forBarMetrics
:
UIBarMetricsDefault
];
if
(
SYSTEM_RUNS_IN_THE_FUTURE
)
self
.
backButton
.
tintColor
=
[
UIColor
colorWithRed
:(
190
.
0
f
/
255
.
0
f
)
green
:(
190
.
0
f
/
255
.
0
f
)
blue
:
(
190
.
0
f
/
255
.
0
f
)
alpha
:
1
.];
else
{
[
self
.
backButton
setBackgroundImage
:[
UIImage
imageNamed
:
@"playbackDoneButton"
]
forState
:
UIControlStateNormal
barMetrics
:
UIBarMetricsDefault
];
[
self
.
backButton
setBackgroundImage
:[
UIImage
imageNamed
:
@"playbackDoneButtonHighlight"
]
forState
:
UIControlStateHighlighted
barMetrics
:
UIBarMetricsDefault
];
}
/* this looks a bit weird, but we need to support iOS 5 and should show the same appearance */
UISlider
*
volumeSlider
=
nil
;
...
...
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