Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2022-08-29 22:28:36 +0300
committerThibault Saunier <tsaunier@igalia.com>2022-08-29 22:29:17 +0300
commit25465fd9f3c65ecc3ce089d56a0c746fcd6a839c (patch)
tree1dfd65ccd2a5868a274b6ff5f7be0e579962b1b4 /audio/csound
parent052092cd2ea6e6bf4914248237ae4e499ad8cb7e (diff)
csound: Fix score-offset getter
Name of the property was wrong
Diffstat (limited to 'audio/csound')
-rw-r--r--audio/csound/src/filter/imp.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/csound/src/filter/imp.rs b/audio/csound/src/filter/imp.rs
index 502ebf33..600a5a05 100644
--- a/audio/csound/src/filter/imp.rs
+++ b/audio/csound/src/filter/imp.rs
@@ -419,11 +419,11 @@ impl ObjectImpl for CsoundFilter {
let settings = self.settings.lock().unwrap();
settings.csd_text.to_value()
}
- "score_offset" => {
+ "score-offset" => {
let settings = self.settings.lock().unwrap();
settings.offset.to_value()
}
- _ => unimplemented!(),
+ name => panic!("No getter for {name}"),
}
}
}