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
695d599c
Commit
695d599c
authored
Aug 18, 2013
by
Felix Paul Kühne
Browse files
Library: correctly set navigation title based on mode
parent
029f8b39
Changes
1
Hide whitespace changes
Inline
Side-by-side
AspenProject/VLCPlaylistViewController.m
View file @
695d599c
...
...
@@ -393,6 +393,13 @@
{
_libraryMode
=
mode
;
if
(
_libraryMode
==
kVLCLibraryModeAllAlbums
)
self
.
title
=
NSLocalizedString
(
@"LIBRARY_MUSIC"
,
@""
);
else
if
(
_libraryMode
==
kVLCLibraryModeAllSeries
)
self
.
title
=
NSLocalizedString
(
@"LIBRARY_SERIES"
,
@""
);
else
self
.
title
=
NSLocalizedString
(
@"LIBRARY_ALL_FILES"
,
@""
);
[
self
reloadContents
];
}
...
...
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