Changed the update signal from returnPressed() to editingFinished() for the lineEdit fields in the ride plot and power histrogram views.

This commit is contained in:
Robert Carlsen
2009-01-08 06:47:33 +00:00
parent b4584baf03
commit 5a00528f4d

View File

@@ -347,11 +347,11 @@ MainWindow::MainWindow(const QDir &home) :
allPlot, SLOT(showGrid(int)));
connect(smoothSlider, SIGNAL(valueChanged(int)),
this, SLOT(setSmoothingFromSlider()));
connect(smoothLineEdit, SIGNAL(returnPressed()),
connect(smoothLineEdit, SIGNAL(editingFinished()),
this, SLOT(setSmoothingFromLineEdit()));
connect(binWidthSlider, SIGNAL(valueChanged(int)),
this, SLOT(setBinWidthFromSlider()));
connect(binWidthLineEdit, SIGNAL(returnPressed()),
connect(binWidthLineEdit, SIGNAL(editingFinished()),
this, SLOT(setBinWidthFromLineEdit()));
connect(qaCPValue, SIGNAL(returnPressed()),
this, SLOT(setQaCPFromLineEdit()));