From 268d0c2c16507e5210f5fd20bc76e5b258ea3511 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 3 Oct 2016 23:36:23 +0100 Subject: [PATCH] Fix thinko. --- src/lib/video_content.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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& 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 -- 2.30.2