summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-10-03 23:36:23 +0100
committerCarl Hetherington <cth@carlh.net>2016-10-03 23:36:23 +0100
commit268d0c2c16507e5210f5fd20bc76e5b258ea3511 (patch)
tree6e25d669529307ea640d156e173283fa1c2b5bbb /src
parentd4cb5146fe6ccc8ae04bac021beac5d56a0e91ec (diff)
Fix thinko.
Diffstat (limited to 'src')
-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 ed1402608..9bb065bab 100644
--- a/src/lib/video_content.cc
+++ b/src/lib/video_content.cc
@@ -457,7 +457,7 @@ void
VideoContent::add_properties (list<UserProperty>& p) const
{
p.push_back (UserProperty (UserProperty::VIDEO, _("Length"), length (), _("video frames")));
- p.push_back (UserProperty (UserProperty::VIDEO, _("Size"), size().width + "x" + size().height));
+ p.push_back (UserProperty (UserProperty::VIDEO, _("Size"), String::compose ("%1x%2", size().width, size().height)));
}
void