summaryrefslogtreecommitdiff
path: root/src/lib/video_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-03-07 19:10:43 +0000
committerCarl Hetherington <cth@carlh.net>2016-03-07 19:10:43 +0000
commitcc0ac806a2dc698d9c20b24498bc865e2d9798ad (patch)
treecbc58e14bb0c530d6efe2bdc1fc916e562939481 /src/lib/video_content.cc
parent07d67a12cc3e4492c4c9c39cdd6fd30ff1e3e612 (diff)
Various small fixes to appearance of content properties dialog.
Diffstat (limited to 'src/lib/video_content.cc')
-rw-r--r--src/lib/video_content.cc2
1 files changed, 1 insertions, 1 deletions
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