Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
438
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor 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
Commits
0b10b3c1
Commit
0b10b3c1
authored
10 months ago
by
Ankit Meel
Committed by
Steve Lhomme
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
macosx: Fix assert in audio artist view
parent
8adc52af
No related branches found
No related tags found
1 merge request
!5129
macosx: Fix assert in audio artist view
Pipeline
#453636
passed with stage
in 22 minutes and 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/gui/macosx/library/audio-library/VLCLibraryAudioViewController.m
+1
-1
1 addition, 1 deletion
...osx/library/audio-library/VLCLibraryAudioViewController.m
with
1 addition
and
1 deletion
modules/gui/macosx/library/audio-library/VLCLibraryAudioViewController.m
+
1
−
1
View file @
0b10b3c1
...
...
@@ -463,13 +463,13 @@ NSString *VLCLibraryPlaceholderAudioViewIdentifier = @"VLCLibraryPlaceholderAudi
-
(
void
)
updatePresentedView
{
_audioDataSource
.
audioLibrarySegment
=
[
self
currentLibrarySegmentToAudioLibrarySegment
];
if
(
_audioDataSource
.
libraryModel
.
numberOfAudioMedia
==
0
)
{
[
self
presentPlaceholderAudioView
];
}
else
{
[
self
prepareAudioLibraryView
];
[
self
hideAllViews
];
_audioDataSource
.
audioLibrarySegment
=
[
self
currentLibrarySegmentToAudioLibrarySegment
];
const
VLCLibraryViewModeSegment
viewModeSegment
=
[
self
viewModeSegmentForCurrentLibrarySegment
];
if
(
viewModeSegment
==
VLCLibraryListViewModeSegment
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment