diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-03-07 19:10:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-03-07 19:10:43 +0000 |
| commit | cc0ac806a2dc698d9c20b24498bc865e2d9798ad (patch) | |
| tree | cbc58e14bb0c530d6efe2bdc1fc916e562939481 /src/lib | |
| parent | 07d67a12cc3e4492c4c9c39cdd6fd30ff1e3e612 (diff) | |
Various small fixes to appearance of content properties dialog.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/audio_content.cc | 2 | ||||
| -rw-r--r-- | src/lib/video_content.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc index c17893c5a..ee5bb69a2 100644 --- a/src/lib/audio_content.cc +++ b/src/lib/audio_content.cc @@ -328,7 +328,7 @@ AudioContent::add_properties (list<UserProperty>& p) const ); } - p.push_back (UserProperty (_("Audio"), _("DCP frame rate"), resampled_audio_frame_rate ())); + p.push_back (UserProperty (_("Audio"), _("DCP frame rate"), resampled_audio_frame_rate (), _("Hz"))); p.push_back (UserProperty (_("Length"), _("Full length in video frames at DCP rate"), c.frames_round (frc.dcp))); if (stream) { diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 0fbcba7e0..ca96df1e8 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -583,7 +583,7 @@ VideoContent::add_properties (list<UserProperty>& p) const { p.push_back (UserProperty (_("Video"), _("Length"), raw_convert<string> (video_length ()), _("video frames"))); p.push_back (UserProperty (_("Video"), _("Size"), raw_convert<string> (video_size().width) + "x" + raw_convert<string> (video_size().height))); - p.push_back (UserProperty (_("Video"), _("Frame rate"), raw_convert<string> (video_frame_rate()), _("frames per second"))); + p.push_back (UserProperty (_("Video"), _("Frame rate"), raw_convert<string> (video_frame_rate(), 5), _("frames per second"))); } double |
