Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
530
Issue boards
Milestones
Wiki
Code
Merge requests
15
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-Android
Commits
db589452
Commit
db589452
authored
1 year ago
by
Duncan McNamara
Committed by
Nicolas Pomepuy
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
AlbumSongs: add FORCE_PLAY_ALL_AUDIO check
parent
e3bfc023
No related branches found
Branches containing commit
No related tags found
1 merge request
!1749
AlbumSongs: add FORCE_PLAY_ALL_AUDIO check
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
application/vlc-android/src/org/videolan/vlc/gui/audio/AudioAlbumsSongsFragment.kt
+4
-1
4 additions, 1 deletion
...rc/org/videolan/vlc/gui/audio/AudioAlbumsSongsFragment.kt
with
4 additions
and
1 deletion
application/vlc-android/src/org/videolan/vlc/gui/audio/AudioAlbumsSongsFragment.kt
+
4
−
1
View file @
db589452
...
...
@@ -273,7 +273,10 @@ class AudioAlbumsSongsFragment : BaseAudioBrowser<AlbumSongsViewModel>(), SwipeR
startActivity
(
i
)
}
else
{
if
(
inSearchMode
())
UiTools
.
setKeyboardVisibility
(
v
,
false
)
MediaUtils
.
openMedia
(
v
.
context
,
item
as
MediaWrapper
)
if
(
Settings
.
getInstance
(
requireContext
()).
getBoolean
(
FORCE_PLAY_ALL_AUDIO
,
false
))
MediaUtils
.
playAll
(
activity
,
viewModel
.
tracksProvider
,
position
,
false
)
else
MediaUtils
.
openMedia
(
v
.
context
,
item
as
MediaWrapper
)
}
}
...
...
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