Skip to content
Snippets Groups Projects

qml/MediaGroupList: Add 99+ support for labels

Merged Benjamin Arnaud requested to merge bunjee/vlc:ci-groups-max into master
1 file
+ 6
3
Compare changes
  • Side-by-side
  • Inline
@@ -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