summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-25 22:33:21 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-25 22:33:21 +0100
commitc64cf5297b3f10e03291180cd9317e748b1a2198 (patch)
treee7554fec0d6d725a9f11e8b59172bebfc9fd4464
parent66e0ee10200ba850087ac7d7dcaf1ef9a30c64b2 (diff)
Tweak property name.
-rw-r--r--src/lib/audio_content.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc
index 1fcd33583..192a50068 100644
--- a/src/lib/audio_content.cc
+++ b/src/lib/audio_content.cc
@@ -313,7 +313,7 @@ AudioContent::add_properties (shared_ptr<const Film> film, list<UserProperty>& p
if (stream) {
p.push_back (UserProperty(UserProperty::AUDIO, _("Channels"), stream->channels()));
- p.push_back (UserProperty(UserProperty::AUDIO, _("Content audio sample rate"), stream->frame_rate(), _("Hz")));
+ p.push_back (UserProperty(UserProperty::AUDIO, _("Content sample rate"), stream->frame_rate(), _("Hz")));
}
FrameRateChange const frc (_parent->active_video_frame_rate(film), film->video_frame_rate());