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
439
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
Merge requests
!106
qml/MediaGroupList: Add 99+ support for labels
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
qml/MediaGroupList: Add 99+ support for labels
bunjee/vlc:ci-groups-max
into
master
Overview
1
Commits
1
Pipelines
2
Changes
1
Merged
Benjamin Arnaud
requested to merge
bunjee/vlc:ci-groups-max
into
master
3 years ago
Overview
1
Commits
1
Pipelines
2
Changes
1
Expand
2
0
Merge request reports
Compare
master
version 1
7dae1381
3 years ago
master (base)
and
latest version
latest version
a966f7d5
1 commit,
3 years ago
version 1
7dae1381
1 commit,
3 years ago
1 file
+
6
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/gui/qt/medialibrary/qml/MediaGroupList.qml
+
6
−
3
Options
@@ -150,9 +150,12 @@ Widgets.NavigableFocusScope {
model
.
resolution_name
||
""
,
model
.
channel
||
""
].
filter
(
function
(
a
)
{
return
a
!==
""
});
}
else
return
[
string
.
arg
(
count
)
];
}
else
{
if
(
count
<
100
)
return
[
string
.
arg
(
count
)
];
else
return
[
string
.
arg
(
"
99+
"
)
];
}
}
//---------------------------------------------------------------------------------------------
Loading