From da00d94b60efe2ae7313b39de7af933096b4c67e Mon Sep 17 00:00:00 2001 From: Thomas Wilshaw Date: Fri, 7 Jan 2022 01:24:29 +0000 Subject: [PATCH] Fix string creation --- app/task/project/loadotio/loadotio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/task/project/loadotio/loadotio.cpp b/app/task/project/loadotio/loadotio.cpp index 8d9e14f2e..7a0ec6f87 100644 --- a/app/task/project/loadotio/loadotio.cpp +++ b/app/task/project/loadotio/loadotio.cpp @@ -105,7 +105,7 @@ bool LoadOTIOTask::Run() } else { // If the otio timeline does not provide a name, create a default one here unnamed_sequence_count++; - QString label = tr("Sequence") + QString(" ") + QString::number(unnamed_sequence_count); + QString label = tr("Sequence %1").arg(unnamed_sequence_count); sequence->SetLabel(QString::fromStdString(label.toStdString())); } // Set default params incase they aren't edited.