From: Till Theato Date: Wed, 2 Feb 2011 15:56:09 +0000 (+0000) Subject: rotoscoping: fix setup issues X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=2fe818b13d5bb5d05495b03553054b5c61c8a855;p=kdenlive rotoscoping: fix setup issues svn path=/trunk/kdenlive/; revision=5378 --- 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; }