mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-12-18 14:06:30 +00:00
properties: display the number of elements found
This commit is contained in:
parent
dc04f16b47
commit
402ac1f40f
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ pub fn display_pipeline_details(app: &GPSApp) {
|
|||
if let Some(elements) = app.player.borrow().pipeline_elements() {
|
||||
let elements_list = elements.join(" ");
|
||||
let label = gtk::Label::builder()
|
||||
.label("Elements:")
|
||||
.label(&format!("{} elements:", elements.len()))
|
||||
.hexpand(true)
|
||||
.halign(gtk::Align::Start)
|
||||
.valign(gtk::Align::Start)
|
||||
|
|
Loading…
Reference in a new issue