From 2fe818b13d5bb5d05495b03553054b5c61c8a855 Mon Sep 17 00:00:00 2001 From: Till Theato Date: Wed, 2 Feb 2011 15:56:09 +0000 Subject: [PATCH] rotoscoping: fix setup issues svn path=/trunk/kdenlive/; revision=5378 --- src/rotoscoping/rotowidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rotoscoping/rotowidget.cpp b/src/rotoscoping/rotowidget.cpp index 2d9e0adc..e755dd23 100644 --- a/src/rotoscoping/rotowidget.cpp +++ b/src/rotoscoping/rotowidget.cpp @@ -54,7 +54,7 @@ RotoWidget::RotoWidget(QString data, Monitor *monitor, int in, int out, QWidget* QList l = bpoint.toList(); BPoint p; p.h1 = QPointF(l.at(0).toList().at(0).toDouble() * width, l.at(0).toList().at(1).toDouble() * height); - p.p = QPointF(l.at(1).toList().at(0).toDouble() * width, l.at(2).toList().at(1).toDouble() * height); + p.p = QPointF(l.at(1).toList().at(0).toDouble() * width, l.at(1).toList().at(1).toDouble() * height); p.h2 = QPointF(l.at(2).toList().at(0).toDouble() * width, l.at(2).toList().at(1).toDouble() * height); points << p; } -- 2.39.2