Fix PfPV divide 1000

This commit is contained in:
Berend De Schouwer
2009-09-09 12:14:24 +02:00
committed by Justin Knotzke
parent 236878ff7f
commit 0873317ea7

View File

@@ -1944,7 +1944,7 @@ void
MainWindow::setQaCLFromLineEdit()
{
double value = qaClValue->text().toDouble();
pfPvPlot->setCL(value / 1000);
pfPvPlot->setCL(value);
}
void