Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
13c0879c
Commit
13c0879c
authored
Aug 10, 2013
by
Felix Paul Kühne
Browse files
App Delegate: fix opening external URLs with new menu
parent
975f3d65
Changes
1
Hide whitespace changes
Inline
Side-by-side
AspenProject/VLCAppDelegate.m
View file @
13c0879c
...
...
@@ -100,7 +100,13 @@
[
self
updateMediaList
];
}
else
{
NSURL
*
parsedUrl
=
[
self
parseOpenURL
:
url
];
[
_playlistViewController
openMovieFromURL
:
parsedUrl
];
UINavigationController
*
navController
=
[[
UINavigationController
alloc
]
initWithRootViewController
:
self
.
playlistViewController
];
[
navController
loadTheme
];
self
.
revealController
.
contentViewController
=
navController
;
[
self
.
revealController
toggleSidebar
:
NO
duration
:
kGHRevealSidebarDefaultAnimationDuration
];
[
self
.
playlistViewController
performSelector
:
@selector
(
openMovieFromURL
:)
withObject
:
parsedUrl
afterDelay
:
kGHRevealSidebarDefaultAnimationDuration
];
}
return
YES
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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