From adfe8654346c3590345892a5eab29ac418611603 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sat, 9 Feb 2019 15:11:25 -0800 Subject: [PATCH] fixed double colon on transitions --- project/transition.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/transition.cpp b/project/transition.cpp index cad1c2792..0535e75e9 100644 --- a/project/transition.cpp +++ b/project/transition.cpp @@ -25,7 +25,7 @@ Transition::Transition(Clip* c, Clip* s, const EffectMeta* em) : Effect(c, em), secondary_clip(s), length(30) { - length_field = add_row(tr("Length:"), false)->add_field(EFFECT_FIELD_DOUBLE, "length"); + length_field = add_row(tr("Length"), false)->add_field(EFFECT_FIELD_DOUBLE, "length"); connect(length_field, SIGNAL(changed()), this, SLOT(set_length_from_slider())); length_field->set_double_default_value(30); length_field->set_double_minimum_value(0);