mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-15 21:31:03 +00:00
pipeline: fix a small issue with properties
Line formatting was wrong with properties set ie filesrc location.
This commit is contained in:
parent
95a095482f
commit
fdfd739831
1 changed files with 1 additions and 1 deletions
|
@ -391,7 +391,7 @@ impl Pipeline {
|
||||||
elements.insert(unique_name.clone(), unique_name.clone());
|
elements.insert(unique_name.clone(), unique_name.clone());
|
||||||
for (name, value) in node.properties().iter() {
|
for (name, value) in node.properties().iter() {
|
||||||
if !node.hidden_property(name) {
|
if !node.hidden_property(name) {
|
||||||
description.push_str(&format!("{}={}", name, value));
|
description.push_str(&format!("{}={} ", name, value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue