From: Till Theato Date: Fri, 3 Sep 2010 13:25:10 +0000 (+0000) Subject: Scale background for curve widget to make it less bright. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=62ea3118fcbb0c3fc09de5dd2c2bb63929678a01;p=kdenlive Scale background for curve widget to make it less bright. svn path=/trunk/kdenlive/; revision=4822 --- diff --git a/src/effectstackedit.cpp b/src/effectstackedit.cpp index fc979af8..24bf4916 100644 --- a/src/effectstackedit.cpp +++ b/src/effectstackedit.cpp @@ -145,7 +145,7 @@ void EffectStackEdit::meetDependency(const QString& name, QString type, QString KisCurveWidget *curve = (KisCurveWidget*)m_valueItems[name]; if (curve) { int color = value.toInt(); - curve->setPixmap(QPixmap::fromImage(ColorTools::rgbCurvePlane(curve->size(), (ColorTools::ColorsRGB)color))); + curve->setPixmap(QPixmap::fromImage(ColorTools::rgbCurvePlane(curve->size(), (ColorTools::ColorsRGB)color, 0.8))); } } }