From 5a00528f4d6ba9fde775564f462f211d3d24eae1 Mon Sep 17 00:00:00 2001 From: Robert Carlsen Date: Thu, 8 Jan 2009 06:47:33 +0000 Subject: [PATCH] Changed the update signal from returnPressed() to editingFinished() for the lineEdit fields in the ride plot and power histrogram views. --- src/MainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 04f4e8ba7..bfc91b0ad 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -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()));