Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-iOS
Manage
Activity
Members
Labels
Plan
Issues
266
Issue boards
Milestones
Wiki
Code
Merge requests
17
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
!433
QueueViewController: Move constraints removing from didMove to willMove
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
QueueViewController: Move constraints removing from didMove to willMove
edrflt/vlc-ios:fix__playqueue_crash
into
master
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Edgar Fouillet
requested to merge
edrflt/vlc-ios:fix__playqueue_crash
into
master
3 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
This could help solving
#1193 (closed)
and at least give better traces.
0
0
Merge request reports
Compare
master
version 1
0bebc9f8
3 years ago
master (base)
and
latest version
latest version
4617173c
1 commit,
3 years ago
version 1
0bebc9f8
1 commit,
3 years ago
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Sources/Playback/Queue/QueueViewController.swift
+
3
−
1
Options
@@ -122,12 +122,14 @@ class QueueViewController: UIViewController {
super
.
viewWillAppear
(
animated
)
}
override
func
did
Move
(
toParent
parent
:
UIViewController
?)
{
override
func
will
Move
(
toParent
parent
:
UIViewController
?)
{
NSLayoutConstraint
.
deactivate
(
darkOverlayViewConstraints
)
NSLayoutConstraint
.
deactivate
(
constraints
)
darkOverlayViewConstraints
.
removeAll
()
constraints
.
removeAll
()
}
override
func
didMove
(
toParent
parent
:
UIViewController
?)
{
if
let
parent
=
parent
{
parent
.
view
.
addSubview
(
darkOverlayView
)
darkOverlayViewConstraints
=
[
Loading